2015-09-15 10:26:18 +01:00
|
|
|
{ stdenv, fetchurl, libclthreads, libX11, libXft, xorg }:
|
2015-04-22 15:28:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libclxclient-${version}";
|
|
|
|
version = "3.9.0";
|
2015-05-28 05:26:17 +01:00
|
|
|
|
2015-04-22 15:28:37 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/clxclient-${version}.tar.bz2";
|
2015-04-22 15:28:37 +01:00
|
|
|
sha256 = "14l7xrh964gllymraq4n5pgax94p5jsfjslqi5c6637zc4lmgnl0";
|
|
|
|
};
|
|
|
|
|
2015-09-15 10:26:18 +01:00
|
|
|
buildInputs = [ libclthreads libX11 libXft xorg.xproto ];
|
2015-04-22 15:28:37 +01:00
|
|
|
|
2016-04-16 18:55:18 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${xorg.xproto}/include -I${libXft.dev}/include";
|
2015-05-28 05:26:17 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
2015-04-22 15:28:37 +01:00
|
|
|
sed -e "s@ldconfig@@" -i Makefile
|
|
|
|
'';
|
|
|
|
|
2015-05-28 05:26:17 +01:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"SUFFIX=''"
|
|
|
|
];
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
# The Makefile does not create the include directory
|
|
|
|
mkdir -p $out/include
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2015-04-22 15:28:37 +01:00
|
|
|
ln $out/lib/libclxclient.so $out/lib/libclxclient.so.3
|
|
|
|
'';
|
|
|
|
|
2015-05-28 05:26:17 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Zita X11 library";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html;
|
2015-05-28 05:26:17 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
2015-04-22 15:28:37 +01:00
|
|
|
};
|
|
|
|
}
|