summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 09:30:26 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:10 +0200
commit488166124e2ddbf3cc8e5727b6d70cfb9e9a072b (patch)
tree8904e5adccf66bfd785d280c0b8e3c4c94e2b6bb
parent8fccb64af1be556f436d86262c844d3276ecff6b (diff)
downloadnixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.tar
nixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.tar.gz
nixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.tar.bz2
nixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.tar.lz
nixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.tar.xz
nixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.tar.zst
nixpkgs-488166124e2ddbf3cc8e5727b6d70cfb9e9a072b.zip
raul: use python3
-rw-r--r--pkgs/development/libraries/audio/raul/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/libraries/audio/raul/default.nix b/pkgs/development/libraries/audio/raul/default.nix
index a0089e31044..b1a8288c5f0 100644
--- a/pkgs/development/libraries/audio/raul/default.nix
+++ b/pkgs/development/libraries/audio/raul/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchgit, boost, gtk2, pkg-config, python, wafHook }:
+{ lib, stdenv, fetchgit, boost, gtk2, pkg-config, python3, wafHook }:
 
 stdenv.mkDerivation rec {
   pname = "raul";
@@ -12,8 +12,10 @@ stdenv.mkDerivation rec {
     sha256 = "1z37jb6ghc13b8nv8a8hcg669gl8vh4ni9djvfgga9vcz8rmcg8l";
   };
 
-  nativeBuildInputs = [ pkg-config wafHook ];
-  buildInputs = [ boost gtk2 python ];
+  nativeBuildInputs = [ pkg-config wafHook python3 ];
+  buildInputs = [ boost gtk2 ];
+
+  strictDeps = true;
 
   meta = with lib; {
     description = "A C++ utility library primarily aimed at audio/musical applications";