* Added ms-sys, a program for writing Microsoft compatible boot records.

svn path=/nixpkgs/branches/stdenv-updates/; revision=10428
This commit is contained in:
Yury G. Kudryashov 2008-01-31 10:40:21 +00:00
parent 77ccd225e7
commit b1b8c4f258
2 changed files with 26 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -632,6 +632,10 @@ rec {
inherit fetchurl stdenv;
};
mssys = import ../tools/misc/mssys {
inherit fetchurl stdenv gettext;
};
ncat = import ../tools/networking/ncat {
inherit fetchurl stdenv openssl;
};