forked from mirrors/nixpkgs
dfasma: build with Qt 5.5
This commit is contained in:
parent
fdc0e17490
commit
d97dbf87c0
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, fftw, libsndfile, qt5 }:
|
{ stdenv, fetchFromGitHub, fftw, libsndfile, qtbase, qtmultimedia }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ in stdenv.mkDerivation {
|
||||||
owner = "gillesdegottex";
|
owner = "gillesdegottex";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ];
|
buildInputs = [ fftw libsndfile qtbase qtmultimedia ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}'
|
substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}'
|
||||||
|
@ -53,6 +53,10 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapQtProgram "$out/bin/dfasma"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = "Analyse and compare audio files in time and frequency";
|
description = "Analyse and compare audio files in time and frequency";
|
||||||
|
|
|
@ -11002,7 +11002,7 @@ let
|
||||||
plugins = [];
|
plugins = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
dfasma = callPackage ../applications/audio/dfasma { };
|
dfasma = qt5Libs.callPackage ../applications/audio/dfasma { };
|
||||||
|
|
||||||
dia = callPackage ../applications/graphics/dia {
|
dia = callPackage ../applications/graphics/dia {
|
||||||
inherit (pkgs.gnome) libart_lgpl libgnomeui;
|
inherit (pkgs.gnome) libart_lgpl libgnomeui;
|
||||||
|
|
Loading…
Reference in a new issue