mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
40 lines
925 B
Nix
40 lines
925 B
Nix
{ stdenv, fetchurl, pkgconfig, perl
|
|
, buildsystem
|
|
, libwapcaplet
|
|
, libparserutils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "netsurf-${libname}-${version}";
|
|
libname = "libcss";
|
|
version = "0.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
|
sha256 = "0qp4p1q1dwgdra4pkrzd081zjzisxkgwx650ijx323j8bj725daf";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ perl
|
|
buildsystem
|
|
libwapcaplet
|
|
libparserutils
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE=[ "-Wno-error=implicit-fallthrough" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.netsurf-browser.org/;
|
|
description = "Cascading Style Sheets library for netsurf browser";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.vrthra ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|