mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 18:37:02 +00:00
6b829e7302
The mkdirs were failing since the 'out' and 'lib' directories are already created by 'make install' (#7524 fallout). And in fact, the entire postInstall script is doing the exact same thing as installPhase, so it can be simply dropped.
29 lines
768 B
Nix
29 lines
768 B
Nix
{ stdenv, fetchurl, autoreconfHook, libjpeg, libpng12, libX11, zlib }:
|
|
|
|
let version = "3.5.0.31"; in
|
|
stdenv.mkDerivation {
|
|
name = "libxcomp-${version}";
|
|
|
|
src = fetchurl {
|
|
sha256 = "1hi3xrjzr37zs72djw3k7gj6mn2bsihfw1iysl8l0i85jl6sdfkd";
|
|
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "NX compression library";
|
|
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
|
license = licenses.gpl2;
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
|
|
buildInputs = [ libjpeg libpng12 libX11 zlib ];
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
preAutoreconf = ''
|
|
cd nxcomp/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
}
|