about summary refs log tree commit diff
path: root/pkgs/applications/audio/sfxr-qt
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2022-01-13 15:43:58 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2022-01-13 15:44:00 +0100
commitd7d893c17a56070ee51e2a514d98d9fc6e3e93d0 (patch)
treeb3f52dd1c7a76dfb7f8d0ac2507354dd5fb56c4d /pkgs/applications/audio/sfxr-qt
parenteeb2b2e3a94feabd208a3674b67310bdfa801818 (diff)
sfxr-qt: 1.3.0 -> 1.4.0
And some formatting
Diffstat (limited to 'pkgs/applications/audio/sfxr-qt')
-rw-r--r--pkgs/applications/audio/sfxr-qt/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/applications/audio/sfxr-qt/default.nix b/pkgs/applications/audio/sfxr-qt/default.nix
index 165f8446c763b..bf8b826f544f9 100644
--- a/pkgs/applications/audio/sfxr-qt/default.nix
+++ b/pkgs/applications/audio/sfxr-qt/default.nix
@@ -2,6 +2,7 @@
 , mkDerivation
 , fetchFromGitHub
 , cmake
+, extra-cmake-modules
 , qtbase
 , qtquickcontrols2
 , SDL
@@ -10,18 +11,22 @@
 
 mkDerivation rec {
   pname = "sfxr-qt";
-  version = "1.3.0";
+  version = "1.4.0";
+
   src = fetchFromGitHub {
     owner = "agateau";
     repo = "sfxr-qt";
     rev = version;
-    sha256 = "15yjgjl1c5k816mnpc09104zq0ack2a3mjsxmhcik7cmjkfiipr5";
+    sha256 = "sha256-Mn+wcwu70BwsTLFlc12sOOe6U1AJ8hR7bCIPlPnCooE=";
     fetchSubmodules = true;
   };
+
   nativeBuildInputs = [
     cmake
+    extra-cmake-modules
     (python3.withPackages (pp: with pp; [ pyyaml jinja2 setuptools ]))
   ];
+
   buildInputs = [
     qtbase
     qtquickcontrols2
@@ -36,4 +41,3 @@ mkDerivation rec {
     platforms = platforms.linux;
   };
 }
-