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