nixpkgs/pkgs/applications/misc/netsurf/libnsgif/default.nix

32 lines
762 B
Nix
Raw Normal View History

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