lol

dfasma: build with Qt 5.5

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