mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
30 lines
649 B
Nix
30 lines
649 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
gettext,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ms-sys";
|
|
version = "2.8.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ms-sys/ms-sys-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-qQLuPr0MtwOO0HfjqoqMgzWmxHL1BW1+CK8z1+eD8Vc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
description = "Program for writing Microsoft-compatible boot records";
|
|
homepage = "https://ms-sys.sourceforge.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = with lib.platforms; linux;
|
|
mainProgram = "ms-sys";
|
|
};
|
|
})
|