nixpkgs/pkgs/tools/misc/ms-sys/default.nix
Tobias Geerinckx-Rice 225edbd9b5 ms-sys: 2.5.2 -> 2.5.3
2016-03-06 01:09:12 +01:00

25 lines
599 B
Nix

{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "ms-sys-${version}";
version = "2.5.3";
src = fetchurl {
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
sha256 = "0mijf82cbji4laip6hiy3l5ka5mzq5sivjvyv7wxnc2fd3v7hgp0";
};
buildInputs = [ gettext ];
enableParallelBuilding = true;
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "A program for writing Microsoft-compatible boot records";
homepage = http://ms-sys.sourceforge.net/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ nckx ];
};
}