lol

dfasma: build with Qt 5.5

+7 -3
+6 -2
pkgs/applications/audio/dfasma/default.nix
··· 1 - { stdenv, fetchFromGitHub, fftw, libsndfile, qt5 }: 1 + { stdenv, fetchFromGitHub, fftw, libsndfile, qtbase, qtmultimedia }: 2 2 3 3 let 4 4 ··· 39 39 owner = "gillesdegottex"; 40 40 }; 41 41 42 - buildInputs = [ fftw libsndfile qt5.base qt5.multimedia ]; 42 + buildInputs = [ fftw libsndfile qtbase qtmultimedia ]; 43 43 44 44 postPatch = '' 45 45 substituteInPlace dfasma.pro --replace '$$DFASMAVERSIONGITPRO' '${version}' ··· 52 52 ''; 53 53 54 54 enableParallelBuilding = true; 55 + 56 + postInstall = '' 57 + wrapQtProgram "$out/bin/dfasma" 58 + ''; 55 59 56 60 meta = with stdenv.lib; { 57 61 inherit version;
+1 -1
pkgs/top-level/all-packages.nix
··· 11002 11002 plugins = []; 11003 11003 }; 11004 11004 11005 - dfasma = callPackage ../applications/audio/dfasma { }; 11005 + dfasma = qt5Libs.callPackage ../applications/audio/dfasma { }; 11006 11006 11007 11007 dia = callPackage ../applications/graphics/dia { 11008 11008 inherit (pkgs.gnome) libart_lgpl libgnomeui;