1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

x265: Don't install static library

Following our general policy to only install dynamic libraries. If the
static library turns out to be needed, it could be moved to a separate
output.
This commit is contained in:
Eelco Dolstra 2016-09-01 16:22:35 +02:00
parent 0810decaa7
commit 8b12eee201

View file

@ -49,6 +49,10 @@ stdenv.mkDerivation rec {
cd source
'';
postInstall = ''
rm $out/lib/*.a
'';
nativeBuildInputs = [ cmake yasm ];
meta = with stdenv.lib; {