about summary refs log tree commit diff
path: root/pkgs/applications/audio/dfasma
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-05 01:32:13 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-05 04:20:23 +0200
commitdcfc1fa34128b05fe65636e3a8a04d1847492a68 (patch)
tree674f6d7f359d0fd8af864aadd681290f14be3fba /pkgs/applications/audio/dfasma
parent336b79e6e30c0b4a93e1a004214ac72e73aeb255 (diff)
downloadnixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.tar
nixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.tar.gz
nixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.tar.bz2
nixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.tar.lz
nixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.tar.xz
nixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.tar.zst
nixlib-dcfc1fa34128b05fe65636e3a8a04d1847492a68.zip
dfasma: 1.1.2 -> 1.1.11
And (merely cosmetic) re-shuffle.
Diffstat (limited to 'pkgs/applications/audio/dfasma')
-rw-r--r--pkgs/applications/audio/dfasma/default.nix31
1 files changed, 15 insertions, 16 deletions
diff --git a/pkgs/applications/audio/dfasma/default.nix b/pkgs/applications/audio/dfasma/default.nix
index 9c12249a5992..c341b1d2ac26 100644
--- a/pkgs/applications/audio/dfasma/default.nix
+++ b/pkgs/applications/audio/dfasma/default.nix
@@ -2,9 +2,9 @@
 
 let
 
-  version = "1.1.3";
+  version = "1.1.11";
   rev = "v${version}";
-  sha256 = "0rprnyvvd6yziwl94d3khd7rq95mvsmwag3x4ah0a5iar9w17r0c";
+  sha256 = "1qn2b074pg2w3kd17mld2ibq4x9slmydd3kczz1zyxl8dryrrgfk";
 
   reaperFork = {
     src = fetchFromGitHub {
@@ -27,6 +27,19 @@ in stdenv.mkDerivation {
     owner = "gillesdegottex";
   };
 
+  buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ];
+
+  postPatch = ''
+    substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}'
+    cp -Rv "${reaperFork.src}"/* external/REAPER
+  '';
+
+  configurePhase = ''
+    qmake PREFIX=$out PREFIXSHORTCUT=$out dfasma.pro
+  '';
+
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
     inherit version;
     description = "Analyse and compare audio files in time and frequency";
@@ -43,18 +56,4 @@ in stdenv.mkDerivation {
     platforms = platforms.linux;
     maintainers = with maintainers; [ nckx ];
   };
-
-  buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ];
-
-  postPatch = ''
-    substituteInPlace dfasma.pro \
-      --replace '$$DFASMAVERSIONGITPRO' '${version}'
-    cp -Rv "${reaperFork.src}"/* external/REAPER
-  '';
-
-  configurePhase = ''
-    qmake PREFIX=$out PREFIXSHORTCUT=$out dfasma.pro
-  '';
-
-  enableParallelBuilding = true;
 }