Merge pull request #214418 from k3a/macos-diffuse

diffuse: macos support

authored by Weijia Wang and committed by GitHub 3b52db07 643f18d4

+6 -1
+6 -1
pkgs/applications/misc/diffuse/default.nix
··· 45 pygobject3 46 ]; 47 48 mesonFlags = [ 49 "-Db_ndebug=true" 50 ]; ··· 63 description = "Graphical tool for merging and comparing text files"; 64 license = licenses.gpl2; 65 maintainers = with maintainers; [ k3a ]; 66 - platforms = platforms.linux; 67 }; 68 }
··· 45 pygobject3 46 ]; 47 48 + preConfigure = '' 49 + # app bundle for macos 50 + substituteInPlace src/diffuse/meson.build data/icons/meson.build --replace "/Applications" "$out/Applications"; 51 + ''; 52 + 53 mesonFlags = [ 54 "-Db_ndebug=true" 55 ]; ··· 68 description = "Graphical tool for merging and comparing text files"; 69 license = licenses.gpl2; 70 maintainers = with maintainers; [ k3a ]; 71 + platforms = platforms.unix; 72 }; 73 }