summary refs log tree commit diff
path: root/pkgs/tools/misc/ms-sys/default.nix
blob: 376d0ea6ad5c177eefc6fa4caa350569118a2b1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, gettext }:

let version = "2.5.1"; in
stdenv.mkDerivation rec {
  name = "ms-sys-${version}";
 
  src = fetchurl {
    url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
    sha256 = "1vw8yvcqb6iccs4x7rgk09mqrazkalmpxxxsxmvxn32jzdzl5b26";
  };

  buildInputs = [ gettext ];

  makeFlags = [ "PREFIX=$(out)" ];

  meta = {
    inherit version;
    homepage = http://ms-sys.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2;
    description = "A program for writing Microsoft compatible boot records";
  };
}