9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
29 lines
804 B
Nix
29 lines
804 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkg-config, libjpeg, libpng, libX11, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxcomp";
|
|
version = "3.5.99.16";
|
|
|
|
src = fetchurl {
|
|
sha256 = "1m3z9w3h6qpgk265xf030w7lcs181jgw2cdyzshb7l97mn1f7hh2";
|
|
url = "https://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
|
};
|
|
|
|
buildInputs = [ libjpeg libpng libX11 zlib ];
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
preAutoreconf = ''
|
|
cd nxcomp/
|
|
sed -i 's|/src/.libs/libXcomp.a|/src/.libs/libXcomp.la|' test/Makefile.am
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|