mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
0f84673f3d
Goodbye, and thanks for all the Nix...
25 lines
597 B
Nix
25 lines
597 B
Nix
{ stdenv, fetchurl, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ms-sys-${version}";
|
|
version = "2.5.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
|
|
sha256 = "0mijf82cbji4laip6hiy3l5ka5mzq5sivjvyv7wxnc2fd3v7hgp0";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A program for writing Microsoft-compatible boot records";
|
|
homepage = http://ms-sys.sourceforge.net/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|