about summary refs log tree commit diff
path: root/pkgs/applications/audio/fomp
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2021-12-08 22:11:21 +0100
committerBart Brouns <bart@magnetophon.nl>2021-12-09 00:12:46 +0100
commit36e9ca7c2c98136e8c0b1c6e7b6f89b3e0f6757b (patch)
tree90b05d4e1cc7145b3bb9ef7ba541fde79066a60e /pkgs/applications/audio/fomp
parente3d4cf2414b510d9ca3dbcb8b99999c3e60d7fb0 (diff)
fomp: switch from python2 to python3
Diffstat (limited to 'pkgs/applications/audio/fomp')
-rw-r--r--pkgs/applications/audio/fomp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/fomp/default.nix b/pkgs/applications/audio/fomp/default.nix
index f9f57b1ed55b5..bb421886f5d37 100644
--- a/pkgs/applications/audio/fomp/default.nix
+++ b/pkgs/applications/audio/fomp/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, lv2, pkg-config, python2, wafHook }:
+{ lib, stdenv, fetchurl, lv2, pkg-config, python3, wafHook }:
 
 stdenv.mkDerivation rec {
   pname = "fomp";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkg-config wafHook ];
-  buildInputs = [ lv2 python2 ];
+  buildInputs = [ lv2 python3 ];
 
   meta = with lib; {
     homepage = "http://drobilla.net/software/fomp/";