summary refs log tree commit diff
path: root/pkgs/applications/audio/ingen/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-01-03 10:05:50 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-01-04 10:45:22 +0100
commit0a2caa41fe0da9e5c36f47994594650f00e1d111 (patch)
treee7b9a6f88de8a8c3ee71ed65b2d9257836f9a3a0 /pkgs/applications/audio/ingen/default.nix
parentf665828fa374580f4b2fd725761d23e18f55e526 (diff)
downloadnixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.tar
nixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.tar.gz
nixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.tar.bz2
nixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.tar.lz
nixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.tar.xz
nixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.tar.zst
nixpkgs-0a2caa41fe0da9e5c36f47994594650f00e1d111.zip
Python: drop `python.majorVersion`
Drop `python.majorVersion`. For Python language version, use `python.pythonVersion`.
For implementation version, use `python.sourceVersion`.

Some expressions were broken. Those that were identified were fixed.

fixup major
Diffstat (limited to 'pkgs/applications/audio/ingen/default.nix')
-rw-r--r--pkgs/applications/audio/ingen/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/ingen/default.nix b/pkgs/applications/audio/ingen/default.nix
index e10a25b8917..1e249b51fb7 100644
--- a/pkgs/applications/audio/ingen/default.nix
+++ b/pkgs/applications/audio/ingen/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation  rec {
     for program in ingenams ingenish
     do
       wrapProgram $out/bin/$program \
-        --prefix PYTHONPATH : $out/lib/python${python.majorVersion}/site-packages:$PYTHONPATH
+        --prefix PYTHONPATH : $out/${python.sitePackages}:$PYTHONPATH
     done
   '';