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

25 lines
583 B
Nix
Raw Normal View History

2016-06-22 06:19:16 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "netsurf-buildsystem-${version}";
version = "1.6";
2016-06-22 06:19:16 +01:00
src = fetchurl {
url = "http://download.netsurf-browser.org/libs/releases/buildsystem-${version}.tar.gz";
sha256 = "0p5k708lcq8dip9xxck6hml32bjrbyipprm22bbsvdnsc0pqm71x";
2016-06-22 06:19:16 +01:00
};
makeFlags = [
"PREFIX=$(out)"
];
meta = with stdenv.lib; {
homepage = http://www.netsurf-browser.org/;
2016-06-22 06:19:16 +01:00
description = "Build system for netsurf browser";
license = licenses.gpl2;
maintainers = [ maintainers.vrthra ];
platforms = platforms.linux;
};
}