* Added ms-sys, a program for writing Microsoft compatible boot records.
svn path=/nixpkgs/trunk/; revision=10414
This commit is contained in:
parent
b16562e38c
commit
f831e0420a
2 changed files with 26 additions and 0 deletions
22
pkgs/tools/misc/mssys/default.nix
Normal file
22
pkgs/tools/misc/mssys/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue