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

32 lines
780 B
Nix
Raw Normal View History

2016-06-22 06:37:37 +01:00
{ stdenv, fetchurl, pkgconfig
, buildsystem
}:
stdenv.mkDerivation rec {
name = "netsurf-${libname}-${version}";
libname = "libutf8proc";
2019-07-25 01:10:56 +01:00
version = "2.4.0-1";
2016-06-22 06:37:37 +01:00
src = fetchurl {
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
2019-07-25 01:10:56 +01:00
sha256 = "0wn409laqaqlqnz2d77419b5rya99vvc696vj187biy1i5livaq1";
2016-06-22 06:37:37 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ buildsystem];
2016-06-22 06:37:37 +01:00
makeFlags = [
"PREFIX=$(out)"
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
];
meta = with stdenv.lib; {
homepage = "http://www.netsurf-browser.org/";
2016-06-22 06:37:37 +01:00
description = "UTF8 Processing library for netsurf browser";
license = licenses.gpl2;
maintainers = [ maintainers.vrthra ];
platforms = platforms.linux;
};
}