From f8f840f6643b6f3e189efce119141ccb9386c45d Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Wed, 9 Sep 2020 14:12:25 +0200 Subject: [PATCH] exiv2: disable output splitting This is a temporary workaround. See the linked comment. --- pkgs/development/libraries/exiv2/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/exiv2/default.nix b/pkgs/development/libraries/exiv2/default.nix index 24c39cb8cdc..b79415894b3 100644 --- a/pkgs/development/libraries/exiv2/default.nix +++ b/pkgs/development/libraries/exiv2/default.nix @@ -17,7 +17,9 @@ stdenv.mkDerivation rec { pname = "exiv2"; version = "0.27.3"; - outputs = [ "out" "dev" "doc" "man" ]; + # Disabled since splitting the outputs leads to issues, see + # https://github.com/NixOS/nixpkgs/pull/97161#issuecomment-689426419 + # outputs = [ "out" "dev" "doc" "man" ]; src = fetchFromGitHub { owner = "exiv2";