dfasma: build with Qt 5.5

This commit is contained in:
Thomas Tuegel
2015-09-27 15:09:44 -05:00
parent fdc0e17490
commit d97dbf87c0
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fftw, libsndfile, qt5 }:
{ stdenv, fetchFromGitHub, fftw, libsndfile, qtbase, qtmultimedia }:
let
@@ -39,7 +39,7 @@ in stdenv.mkDerivation {
owner = "gillesdegottex";
};
buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ];
buildInputs = [ fftw libsndfile qtbase qtmultimedia ];
postPatch = ''
substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}'
@@ -53,6 +53,10 @@ in stdenv.mkDerivation {
enableParallelBuilding = true;
postInstall = ''
wrapQtProgram "$out/bin/dfasma"
'';
meta = with stdenv.lib; {
inherit version;
description = "Analyse and compare audio files in time and frequency";
+1 -1
View File
@@ -11002,7 +11002,7 @@ let
plugins = [];
};
dfasma = callPackage ../applications/audio/dfasma { };
dfasma = qt5Libs.callPackage ../applications/audio/dfasma { };
dia = callPackage ../applications/graphics/dia {
inherit (pkgs.gnome) libart_lgpl libgnomeui;