mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
23 lines
535 B
Nix
23 lines
535 B
Nix
{ stdenv, fetchurl, gettext }:
|
|
|
|
let version = "2.5.1"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "ms-sys-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
|
|
sha256 = "1vw8yvcqb6iccs4x7rgk09mqrazkalmpxxxsxmvxn32jzdzl5b26";
|
|
};
|
|
|
|
buildInputs = [ gettext ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
inherit version;
|
|
homepage = http://ms-sys.sourceforge.net/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
description = "A program for writing Microsoft compatible boot records";
|
|
};
|
|
}
|