pacparser: 1.3.7 -> 1.4.0
Fixes CVE-2019-25078 (and possibly other security related issues without CVE ID). https://github.com/manugarg/pacparser/releases/tag/v1.4.0 https://github.com/manugarg/pacparser/releases/tag/v1.3.9 https://github.com/manugarg/pacparser/releases/tag/v1.3.8
This commit is contained in:
parent
215e668a02
commit
d6e3f5491b
@ -1,12 +1,14 @@
|
|||||||
{ lib, stdenv, fetchurl }:
|
{ lib, stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "pacparser";
|
pname = "pacparser";
|
||||||
version = "1.3.7";
|
version = "1.4.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/manugarg/pacparser/releases/download/${version}/${pname}-${version}.tar.gz";
|
owner = "manugarg";
|
||||||
sha256 = "0jfjm8lqyhdy9ny8a8icyd4rhclhfn608cr1i15jml82q8pyqj7b";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-XtYXUqmBnsqI+0b7Dnynni544d49z1eGH8ihAAqQe7Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = [ "NO_INTERNET=1" ];
|
makeFlags = [ "NO_INTERNET=1" ];
|
||||||
@ -21,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A library to parse proxy auto-config (PAC) files";
|
description = "A library to parse proxy auto-config (PAC) files";
|
||||||
homepage = "http://pacparser.manugarg.com/";
|
homepage = "https://pacparser.manugarg.com/";
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ abbradar ];
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
Loading…
Reference in New Issue
Block a user