Skip to content

Commit

Permalink
postfixadmin: downgrade meta.platforms to *unix except darwin*
Browse files Browse the repository at this point in the history
Because the package uses `/etc` and `/var/cache`
  • Loading branch information
Kamillaova committed Dec 6, 2024
1 parent 6c4edcc commit 19d3120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/by-name/po/postfixadmin/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://postfixadmin.sourceforge.io/";
maintainers = with maintainers; [ globin ];
license = licenses.gpl2Plus;
platforms = platforms.all;
platforms = lib.subtractLists platforms.darwin platforms.unix; # There is no /var/cache/ on MacOS
};
})

0 comments on commit 19d3120

Please sign in to comment.