mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
531e4b80c9
Only acts on one-line dependency lists.
33 lines
768 B
Nix
33 lines
768 B
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, buildsystem
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "netsurf-${libname}-${version}";
|
|
libname = "libnsbmp";
|
|
version = "0.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
|
sha256 = "0gmvzw1whh7553d6s98vr4ri2whjwrgggcq1z5b160gwjw20mzyy";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
buildsystem
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.netsurf-browser.org/;
|
|
description = "BMP Decoder for netsurf browser";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.vrthra ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|