summary refs log blame commit diff
path: root/pkgs/development/libraries/libaal/default.nix
blob: 6df7bc22772feb65ffa868fa0f18461c9281e812 (plain) (tree)
1
2
3
4
5
6
7
8
9
                     
 


                             

                  

                                                                    

    

                                                



                                                            

                                


                                                

                                                            
                                                 

    
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "1.0.6";
  name = "libaal-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/reiser4/${name}.tar.gz";
    sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di";
  };

  patches = [ ./libaal-1.0.6-glibc-2.26.patch ];

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

  enableParallelBuilding = true;

  meta = {
    homepage = http://www.namesys.com/;
    description = "Support library for Reiser4";
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
    platforms = with stdenv.lib.platforms; linux;
  };
}