diff options
| author | Jan Tojnar <jtojnar@gmail.com> | 2019-11-01 01:20:45 +0100 |
|---|---|---|
| committer | Jan Tojnar <jtojnar@gmail.com> | 2019-11-01 02:26:58 +0100 |
| commit | dafa543bf8795e84e4169e107a04278f781cb264 (patch) | |
| tree | e2c0279c4ea04278ee53230698a17950accf89d0 | |
| parent | itstool: 2.0.2 -> 2.0.6 (#72342) (diff) | |
| download | nixpkgs-dafa543bf8795e84e4169e107a04278f781cb264.tar.gz | |
gnome-doc-utils: do not propagate Python
That breaks packages that rely on Python like itstool does.
https://github.com/NixOS/nixpkgs/pull/72342#issuecomment-548250501
| -rw-r--r-- | pkgs/development/tools/documentation/gnome-doc-utils/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/documentation/gnome-doc-utils/default.nix b/pkgs/development/tools/documentation/gnome-doc-utils/default.nix index 2f29fb2fbad2..54c37fa61837 100644 --- a/pkgs/development/tools/documentation/gnome-doc-utils/default.nix +++ b/pkgs/development/tools/documentation/gnome-doc-utils/default.nix @@ -29,6 +29,11 @@ python2Packages.buildPythonApplication rec { }; }; + postFixup = '' + # Do not propagate Python + rm $out/nix-support/propagated-build-inputs + ''; + meta = with stdenv.lib; { description = "Collection of documentation utilities for the GNOME project"; homepage = "https://gitlab.gnome.org/GNOME/gnome-doc-utils"; |
