mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
* Added ms-sys, a program for writing Microsoft compatible boot records.
svn path=/nixpkgs/branches/stdenv-updates/; revision=10428
This commit is contained in:
parent
77ccd225e7
commit
b1b8c4f258
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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user