lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 24 lines 597 B view raw
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 nativeBuildInputs = [ 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 platforms = with platforms; linux; 23 }; 24}