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