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

    

                                                 
 
                    
              


                                







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

stdenv.mkDerivation rec {
  name = "libxcomp-${version}";
  version = "3.5.0.32";

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

  buildInputs = [ libjpeg libpng12 libX11 zlib ];
  nativeBuildInputs = [ autoreconfHook ];

  preAutoreconf = ''
    cd nxcomp/
  '';

  enableParallelBuilding = true;

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