netsurf-libwapcaplet: init at 0.3.0
This commit is contained in:
parent
8dde79a795
commit
5aa722a436
30
pkgs/applications/misc/netsurf/libwapcaplet/default.nix
Normal file
30
pkgs/applications/misc/netsurf/libwapcaplet/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchurl
|
||||
, buildsystem
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "netsurf-${libname}-${version}";
|
||||
libname = "libwapcaplet";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
||||
sha256 = "0cs1dd2afjgc3wf5gqg434hv6jdabrp9qvlpl4dp53nhkyfywna3";
|
||||
};
|
||||
|
||||
buildInputs = [ buildsystem ];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.netsurf-browser.org/";
|
||||
description = "String internment library for netsurf browser";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.vrthra ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -2222,6 +2222,8 @@ in
|
||||
|
||||
buildsystem = callPackage ../applications/misc/netsurf/buildsystem { };
|
||||
|
||||
libwapcaplet = callPackage ../applications/misc/netsurf/libwapcaplet { };
|
||||
|
||||
});
|
||||
|
||||
netperf = callPackage ../applications/networking/netperf { };
|
||||
|
Loading…
Reference in New Issue
Block a user