mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
25 lines
599 B
Nix
25 lines
599 B
Nix
{ stdenv, fetchurl, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ms-sys";
|
|
version = "2.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ms-sys/${pname}-${version}.tar.gz";
|
|
sha256 = "06xqpm2s9cg8fj7a1822wmh3p4arii0sifssazg1gr6i7xg7kbjz";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|