Skip to content

Commit

Permalink
libheif: prune libtool files
Browse files Browse the repository at this point in the history
Fixes build of vapoursynth: https://hydra.nixos.org/build/76818435
  • Loading branch information
orivej committed Jul 3, 2018
1 parent ad611a6 commit 2afe06c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/development/libraries/libheif/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, libde265, x265, pkgconfig, libpng, libjpeg }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, pruneLibtoolFiles, libde265, x265, libpng, libjpeg }:

stdenv.mkDerivation rec {
version = "1.3.2";
Expand All @@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0hk8mzig2kp5f94j4jwqxzjrm7ffk16ffvxl92rf0afsh6vgnz7w";
};

nativeBuildInputs = [ autoreconfHook pkgconfig ];
nativeBuildInputs = [ autoreconfHook pkgconfig pruneLibtoolFiles ];
buildInputs = [ libde265 x265 libpng libjpeg ];
propagatedBuildInputs = [ x265 ];

enableParallelBuilding = true;

meta = {
homepage = "http://www.libheif.org/";
Expand Down

0 comments on commit 2afe06c

Please sign in to comment.