summary refs log blame commit diff
path: root/pkgs/tools/filesystems/reiser4progs/default.nix
blob: cd32025e5b66d6c46fd4792ba9ac0b1cb5b69d54 (plain) (tree)
1
2
3
4
5
6
7
8
9

                           
                         

                                   

                  
                                                                      
                                                                    



                         



                                                       




                                                            
                    

                                       
                                           

    
{stdenv, fetchurl, libaal}:

let version = "1.1.0"; in
stdenv.mkDerivation rec {
  name = "reiser4progs-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/reiser4/reiser4-utils/${name}.tar.gz";
    sha256 = "18bgv0wd75q53642x5dsk4g0mil1hw1zrp7a4xkb0pxx4bzjlbqg";
  };

  buildInputs = [libaal];

  preConfigure = ''
    substituteInPlace configure --replace " -static" ""
  '';

  preInstall = ''
    substituteInPlace Makefile --replace ./run-ldconfig true
  '';

  meta = {
    inherit version;
    homepage = http://www.namesys.com/;
    description = "Reiser4 utilities";
    platforms = stdenv.lib.platforms.linux;
  };
}