nixpkgs/pkgs/development/libraries/libxcomp/default.nix
Ryan Mulligan 7cbddbda9f libxcomp: 3.5.0.32 -> 3.5.0.33
Semi-automatic update. These checks were performed:

- built on NixOS
- found 3.5.0.33 with grep in /nix/store/mc3jmk1ka7ny9byjwxavx5mdcrxb4kdb-libxcomp-3.5.0.33
- found 3.5.0.33 in filename of file in /nix/store/mc3jmk1ka7ny9byjwxavx5mdcrxb4kdb-libxcomp-3.5.0.33
2018-02-26 21:38:42 -08:00

28 lines
709 B
Nix

{ stdenv, fetchurl, autoreconfHook, libjpeg, libpng, libX11, zlib }:
stdenv.mkDerivation rec {
name = "libxcomp-${version}";
version = "3.5.0.33";
src = fetchurl {
sha256 = "17qjsd6v2ldpfmyjrkdnlq4qk05hz5l6qs54g8h0glzq43w28f74";
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
};
buildInputs = [ libjpeg libpng 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;
};
}