3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/netsurf/libnsgif/default.nix

32 lines
761 B
Nix
Raw Normal View History

2016-06-22 06:34:15 +01:00
{ stdenv, fetchurl, pkgconfig
, buildsystem
}:
stdenv.mkDerivation rec {
name = "netsurf-${libname}-${version}";
libname = "libnsgif";
2019-07-25 01:10:06 +01:00
version = "0.2.1";
2016-06-22 06:34:15 +01:00
src = fetchurl {
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
2019-07-25 01:10:06 +01:00
sha256 = "0jwshypgmx16xlsbx3d8njk8a5khazlplca5mxd3rdbhrlsabbly";
2016-06-22 06:34:15 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ buildsystem];
2016-06-22 06:34:15 +01:00
makeFlags = [
"PREFIX=$(out)"
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
];
meta = with stdenv.lib; {
homepage = http://www.netsurf-browser.org/;
2016-06-22 06:34:15 +01:00
description = "GIF Decoder for netsurf browser";
license = licenses.gpl2;
maintainers = [ maintainers.vrthra ];
platforms = platforms.linux;
};
}