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


                               

                                                                                        
                                                                    



                                           
                                                                 




                                             
                                                                
 
                    
              










                                
{ stdenv, fetchurl, autoreconfHook, libjpeg, libpng12, libX11, zlib }:

let version = "3.5.0.31"; in
stdenv.mkDerivation {
  name = "libxcomp-${version}";

  src = fetchurl {
    url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-full.tar.gz";
    sha256 = "0a31508wyfyblf6plag2djr4spra5kylcmgg99h83c60ylxxnc11";
  };

  meta = with stdenv.lib; {
    description = "NX compression library";
    homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
    license = with licenses; gpl2;
    platforms = with platforms; linux;
    maintainers = with maintainers; [ nckx ];
  };

  buildInputs = [ autoreconfHook libjpeg libpng12 libX11 zlib ];

  preAutoreconf = ''
    cd nxcomp/
  '';

  enableParallelBuilding = true;

  postInstall = ''
    mkdir $out/lib
    cp libXcomp.so* $out/lib
    mkdir $out/include
    cp NX.h $out/include
  '';
}