mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
netsurf-libnsgif: init at 0.1.3
This commit is contained in:
parent
ec87aa51a6
commit
b02f57204d
2 changed files with 32 additions and 0 deletions
30
pkgs/applications/misc/netsurf/libnsgif/default.nix
Normal file
30
pkgs/applications/misc/netsurf/libnsgif/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchurl, pkgconfig
|
||||
, buildsystem
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "netsurf-${libname}-${version}";
|
||||
libname = "libnsgif";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
||||
sha256 = "1a4z45gh0fw4iybf34fig725av25h31ffk0azi0snzh4130cklnk";
|
||||
};
|
||||
|
||||
buildInputs = [ buildsystem pkgconfig];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.netsurf-browser.org/";
|
||||
description = "GIF Decoder for netsurf browser";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.vrthra ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -2236,6 +2236,8 @@ in
|
|||
|
||||
libnsbmp = callPackage ../applications/misc/netsurf/libnsbmp { };
|
||||
|
||||
libnsgif = callPackage ../applications/misc/netsurf/libnsgif { };
|
||||
|
||||
});
|
||||
|
||||
netperf = callPackage ../applications/networking/netperf { };
|
||||
|
|
Loading…
Reference in a new issue