From 36e9ca7c2c98136e8c0b1c6e7b6f89b3e0f6757b Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Wed, 8 Dec 2021 22:11:21 +0100 Subject: [PATCH] fomp: switch from python2 to python3 --- pkgs/applications/audio/fomp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/fomp/default.nix b/pkgs/applications/audio/fomp/default.nix index f9f57b1ed55b..bb421886f5d3 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/";