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

svn path=/nixpkgs/trunk/; revision=10414
This commit is contained in:
Eelco Dolstra 2008-01-30 17:08:38 +00:00
parent b16562e38c
commit f831e0420a
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

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