2015-12-13 02:09:21 +00:00
|
|
|
{ stdenv, fetchurl, gettext }:
|
2008-01-30 17:08:38 +00:00
|
|
|
|
2015-03-02 14:47:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ms-sys-${version}";
|
2016-03-02 05:39:02 +00:00
|
|
|
version = "2.5.3";
|
2017-12-16 04:46:09 +00:00
|
|
|
|
2008-01-30 17:08:38 +00:00
|
|
|
src = fetchurl {
|
2015-03-02 14:47:53 +00:00
|
|
|
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
|
2016-03-02 05:39:02 +00:00
|
|
|
sha256 = "0mijf82cbji4laip6hiy3l5ka5mzq5sivjvyv7wxnc2fd3v7hgp0";
|
2008-01-30 17:08:38 +00:00
|
|
|
};
|
|
|
|
|
2017-12-16 04:46:09 +00:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2008-01-30 17:08:38 +00:00
|
|
|
|
2016-01-17 22:20:52 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-12-13 02:09:21 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2008-01-30 17:08:38 +00:00
|
|
|
|
2016-01-17 22:20:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-03-02 05:39:02 +00:00
|
|
|
description = "A program for writing Microsoft-compatible boot records";
|
2016-01-17 22:20:52 +00:00
|
|
|
homepage = http://ms-sys.sourceforge.net/;
|
2016-01-17 22:47:25 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2008-01-30 17:08:38 +00:00
|
|
|
};
|
|
|
|
}
|