fmit: 1.0.6 -> 1.0.7

+2 -9
+2 -9
pkgs/applications/audio/fmit/default.nix
··· 7 7 assert alsaSupport -> alsaLib != null; 8 8 assert jackSupport -> libjack2 != null; 9 9 10 - let version = "1.0.6"; in 10 + let version = "1.0.7"; in 11 11 stdenv.mkDerivation { 12 12 name = "fmit-${version}"; 13 13 14 14 src = fetchFromGitHub { 15 - sha256 = "1ls6pcal5vimr3syz4ih06s1j746z63hgj5wbg5z349gy6zl43fh"; 15 + sha256 = "14dzrrxjskhqamhfqhzp6napvc1vyjxcc0v8id1iqzsfdn86xqm9"; 16 16 rev = "v${version}"; 17 17 repo = "fmit"; 18 18 owner = "gillesdegottex"; ··· 24 24 25 25 postPatch = '' 26 26 substituteInPlace fmit.pro --replace '$$FMITVERSIONGITPRO' '${version}' 27 - substituteInPlace distrib/fmit.desktop \ 28 - --replace "Icon=fmit" "Icon=$out/share/pixmaps/fmit.svg" 29 27 ''; 30 28 31 29 configurePhase = '' ··· 39 37 ''; 40 38 41 39 enableParallelBuilding = true; 42 - 43 - postInstall = '' 44 - cd .. 45 - install -Dm644 {ui/images,$out/share/pixmaps}/fmit.svg 46 - ''; 47 40 48 41 meta = with stdenv.lib; { 49 42 inherit version;