Merge pull request #5909 from echo-oddly/fresc

frescobaldi: add pygame dependency for midi support
This commit is contained in:
lethalman 2015-01-23 11:17:22 +01:00
commit 9fda93cc5d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pythonPackages, lilypond, pyqt4 }: { stdenv, fetchurl, pythonPackages, lilypond, pyqt4, pygame }:
pythonPackages.buildPythonPackage rec { pythonPackages.buildPythonPackage rec {
name = "frescobaldi-${version}"; name = "frescobaldi-${version}";
@ -11,7 +11,7 @@ pythonPackages.buildPythonPackage rec {
}; };
propagatedBuildInputs = with pythonPackages; [ lilypond propagatedBuildInputs = with pythonPackages; [ lilypond
pyqt4 poppler-qt4 ]; pyqt4 poppler-qt4 pygame ];
patches = [ ./setup.cfg.patch ./python-path.patch ]; patches = [ ./setup.cfg.patch ./python-path.patch ];