depot/pkgs/tools/misc/ms-sys/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
767 B
Nix

{ lib, stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
pname = "ms-sys";
version = "2.6.0";
src = fetchurl {
url = "mirror://sourceforge/ms-sys/ms-sys-${version}.tar.gz";
sha256 = "06xqpm2s9cg8fj7a1822wmh3p4arii0sifssazg1gr6i7xg7kbjz";
};
# TODO: Remove with next release, see https://sourceforge.net/p/ms-sys/patches/8/
patches = [ ./manpages-without-build-timestamps.patch ];
nativeBuildInputs = [ gettext ];
enableParallelBuilding = true;
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Program for writing Microsoft-compatible boot records";
homepage = "https://ms-sys.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = with platforms; linux;
mainProgram = "ms-sys";
};
}