summary refs log blame commit diff
path: root/pkgs/tools/misc/ms-sys/default.nix
blob: c0b1de6c1e8ce20ba43466412532e720c0b1aff3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                              
 

                             
                    
 
                  
                                                       
                                                                    

    
                            
 

                                
                                  
 
                           
                                                                            
                                              
                                
                                             

    
{ stdenv, fetchurl, gettext }:

stdenv.mkDerivation rec {
  name = "ms-sys-${version}";
  version = "2.5.2";
 
  src = fetchurl {
    url = "mirror://sourceforge/ms-sys/${name}.tar.gz";
    sha256 = "0c7ld5pglcacnrvy2gzzg1ny1jyknlj9iz1mvadq3hn8ai1d83px";
  };

  buildInputs = [ 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;
    maintainers = with maintainers; [ nckx ];
  };
}