libxcomp: Fix build

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.
This commit is contained in:
Tuomas Tynkkynen 2015-06-27 23:53:49 +03:00
parent e6ca18e9bf
commit 6b829e7302

View file

@ -25,11 +25,4 @@ stdenv.mkDerivation {
'';
enableParallelBuilding = true;
postInstall = ''
mkdir $out/lib
cp libXcomp.so* $out/lib
mkdir $out/include
cp NX.h $out/include
'';
}