nixpkgs/pkgs/tools/misc/ms-sys/default.nix

26 lines
621 B
Nix
Raw Normal View History

2015-12-13 02:09:21 +00:00
{ stdenv, fetchurl, gettext }:
let version = "2.5.2"; in
2015-03-02 14:47:53 +00:00
stdenv.mkDerivation rec {
name = "ms-sys-${version}";
2015-12-13 02:09:21 +00:00
src = fetchurl {
2015-03-02 14:47:53 +00:00
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
sha256 = "0c7ld5pglcacnrvy2gzzg1ny1jyknlj9iz1mvadq3hn8ai1d83px";
};
2015-12-13 02:09:21 +00:00
buildInputs = [ gettext ];
enableParallelBuilding = true;
2015-12-13 02:09:21 +00:00
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
2015-12-13 02:09:21 +00:00
inherit version;
description = "A program for writing Microsoft compatible boot records";
homepage = http://ms-sys.sourceforge.net/;
license = licenses.gpl2;
maintainers = with maintainers; [ nckx ];
};
}