3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #149746 from magnetophon/fomp

fomp: switch from python2 to python3
This commit is contained in:
Thiago Kenji Okada 2021-12-15 23:03:05 -03:00 committed by GitHub
commit c249c85926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/";