aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/friture/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/friture/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/friture/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/nixpkgs/pkgs/applications/audio/friture/default.nix b/nixpkgs/pkgs/applications/audio/friture/default.nix
index eae4b651685..b93ad14f55e 100644
--- a/nixpkgs/pkgs/applications/audio/friture/default.nix
+++ b/nixpkgs/pkgs/applications/audio/friture/default.nix
@@ -4,30 +4,32 @@ let
py = python3Packages;
in py.buildPythonApplication rec {
pname = "friture";
- version = "0.37";
+ version = "unstable-2020-02-16";
src = fetchFromGitHub {
owner = "tlecomte";
repo = pname;
- rev = "v${version}";
- sha256 = "1ivy5qfd90w1s1icsphvvdnnqz563v3fhg5pws2zn4483cgnzc2y";
+ rev = "4460b4e72a9c55310d6438f294424b5be74fc0aa";
+ sha256 = "1pmxzq78ibifby3gbir1ah30mgsqv0y7zladf5qf3sl5r1as0yym";
};
- # module imports scipy.misc.factorial, but it has been removed since scipy
- # 1.3.0; use scipy.special.factorial instead
- patches = [ ./factorial.patch ];
-
nativeBuildInputs = (with py; [ numpy cython scipy ]) ++
[ wrapQtAppsHook ];
propagatedBuildInputs = with py; [
sounddevice
pyopengl
+ pyopengl-accelerate
docutils
numpy
pyqt5
appdirs
pyrr
+ rtmixer
+ ];
+
+ patches = [
+ ./unlock_constraints.patch
];
postFixup = ''