raul: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-26 09:30:26 +01:00
parent 8fccb64af1
commit 488166124e

View file

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