depot/third_party/nixpkgs/pkgs/tools/misc/ms-sys/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
744 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";
};
# 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 stdenv.lib; {
description = "A program for writing Microsoft-compatible boot records";
homepage = "http://ms-sys.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = with platforms; linux;
};
}