ms-sys: deprecate mssys attribute name

This commit is contained in:
Tobias Geerinckx-Rice
2015-12-14 23:32:18 +01:00
parent a01e7fed27
commit 0a35ffaace
2 changed files with 2 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
{stdenv, fetchurl, gettext}:
stdenv.mkDerivation rec {
name = "ms-sys-${version}";
version = "2.4.1";
src = fetchurl {
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
sha256 = "0qccv67fc2q97218b9wm6qpmx0nc0ssca391i0q15351y1na78nc";
};
buildInputs = [gettext];
preBuild = ''
makeFlags=(PREFIX=$out)
'';
meta = {
homepage = http://ms-sys.sourceforge.net/;
license = stdenv.lib.licenses.gpl2;
description = "A program for writing Microsoft compatible boot records";
};
}