lol
1{ stdenv, fetchurl, gettext }:
2
3stdenv.mkDerivation rec {
4 name = "ms-sys-${version}";
5 version = "2.5.3";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
9 sha256 = "0mijf82cbji4laip6hiy3l5ka5mzq5sivjvyv7wxnc2fd3v7hgp0";
10 };
11
12 buildInputs = [ gettext ];
13
14 enableParallelBuilding = true;
15
16 makeFlags = [ "PREFIX=$(out)" ];
17
18 meta = with stdenv.lib; {
19 description = "A program for writing Microsoft-compatible boot records";
20 homepage = http://ms-sys.sourceforge.net/;
21 license = licenses.gpl2Plus;
22 maintainers = with maintainers; [ nckx ];
23 platforms = with platforms; linux;
24 };
25}