nixpkgs/pkgs/tools/misc/ms-sys/default.nix
R. RyanTM f6efbc1fdc ms-sys: 2.5.3 -> 2.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ms-sys/versions
2019-03-26 00:00:37 -07:00

25 lines
597 B
Nix

{ stdenv, fetchurl, gettext }:
stdenv.mkDerivation rec {
name = "ms-sys-${version}";
version = "2.6.0";
src = fetchurl {
url = "mirror://sourceforge/ms-sys/${name}.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;
};
}