* Added ms-sys, a program for writing Microsoft compatible boot records.
svn path=/nixpkgs/trunk/; revision=10414
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, gettext}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ms-sys-2.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/ms-sys/ms-sys-2.1.3.tgz;
|
||||
md5 = "6fad0a69ac89440ad4f696dbbbf11497";
|
||||
};
|
||||
|
||||
buildInputs = [gettext];
|
||||
|
||||
preBuild = ''
|
||||
makeFlags=(PREFIX=$out)
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://ms-sys.sourceforge.net/;
|
||||
license = "GPL";
|
||||
description = "A program for writing Microsoft compatible boot records";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user