mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Netsurf libparserutils: 0.2.4 -> 0.2.4
Update metadata and maintain version
This commit is contained in:
parent
b055ec84fc
commit
0f845601f6
@ -2,4 +2,5 @@
|
|||||||
|
|
||||||
lib.makeScope pkgs.newScope (self: with self; {
|
lib.makeScope pkgs.newScope (self: with self; {
|
||||||
buildsystem = callPackage ./buildsystem.nix { };
|
buildsystem = callPackage ./buildsystem.nix { };
|
||||||
|
libparserutils = callPackage ./libparserutils.nix { };
|
||||||
})
|
})
|
||||||
|
@ -3,17 +3,16 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "netsurf-${libname}";
|
||||||
name = "netsurf-${libname}-${version}";
|
|
||||||
libname = "libparserutils";
|
libname = "libparserutils";
|
||||||
version = "0.2.4";
|
version = "0.2.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
||||||
sha256 = "1n2794y2l0c8nv8z2pxwfnbn882987ifmxjv60zdxkhcndhswarj";
|
sha256 = "sha256-MiuuYbMMzt4+MFv26uJBSSBkl3W8X/HRtogBKjxJR9g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ buildsystem perl ];
|
buildInputs = [ perl buildsystem ];
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"PREFIX=$(out)"
|
"PREFIX=$(out)"
|
||||||
@ -21,10 +20,10 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.netsurf-browser.org/";
|
homepage = "https://www.netsurf-browser.org/projects/${libname}/";
|
||||||
description = "Parser building library for netsurf browser";
|
description = "Parser building library for netsurf browser";
|
||||||
license = licenses.gpl2;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.vrthra ];
|
maintainers = [ maintainers.vrthra maintainers.AndersonTorres ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user