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

25 lines
599 B
Nix
Raw Normal View History

2015-12-12 18:09:21 -08:00
{ stdenv, fetchurl, gettext }:
2015-03-02 06:47:53 -08:00
stdenv.mkDerivation rec {
name = "ms-sys-${version}";
2016-03-01 21:39:02 -08:00
version = "2.5.3";
2015-12-12 18:09:21 -08:00
src = fetchurl {
2015-03-02 06:47:53 -08:00
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
2016-03-01 21:39:02 -08:00
sha256 = "0mijf82cbji4laip6hiy3l5ka5mzq5sivjvyv7wxnc2fd3v7hgp0";
};
2015-12-12 18:09:21 -08:00
buildInputs = [ gettext ];
enableParallelBuilding = true;
2015-12-12 18:09:21 -08:00
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
2016-03-01 21:39:02 -08:00
description = "A program for writing Microsoft-compatible boot records";
homepage = http://ms-sys.sourceforge.net/;
2016-01-17 14:47:25 -08:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ nckx ];
};
}