diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-09-27 22:15:27 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-09-27 22:15:27 +0200 |
commit | 27cee78278cbd02d257324b45531a062138dee17 (patch) | |
tree | b16431e605d966e8d159e0e9027e73144a50d6ad | |
parent | e80b0b5447c823715f90791b8613cb3d21ea76e0 (diff) | |
download | pnpkgs-27cee78278cbd02d257324b45531a062138dee17.tar.gz pnpkgs-27cee78278cbd02d257324b45531a062138dee17.zip |
Fix supported platforms
-rw-r--r-- | pkgs/larbs-mail/default.nix | 2 | ||||
-rw-r--r-- | pkgs/larbs-mail/mutt-wizard.nix | 2 | ||||
-rw-r--r-- | pkgs/larbs-mail/neomutt_wrapped.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/larbs-mail/default.nix b/pkgs/larbs-mail/default.nix index a5fe523..aea9d49 100644 --- a/pkgs/larbs-mail/default.nix +++ b/pkgs/larbs-mail/default.nix @@ -47,6 +47,6 @@ buildEnv { homepage = "https://github.com/LukeSmithXYZ/mutt-wizard"; description = "Neomutt + Mutt-Wizard: A system for automatically configuring mutt and isync with a simple interface and safe passwords"; license = licenses.gpl3; - platforms = [ platforms.linux "x86_64-darwin" ]; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; }; } diff --git a/pkgs/larbs-mail/mutt-wizard.nix b/pkgs/larbs-mail/mutt-wizard.nix index 23517e9..2d7821c 100644 --- a/pkgs/larbs-mail/mutt-wizard.nix +++ b/pkgs/larbs-mail/mutt-wizard.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/LukeSmithXYZ/mutt-wizard"; description = "A script for automatically configuring mutt"; license = licenses.gpl3; - platforms = [ platforms.linux "x86_64-darwin" ]; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; }; } diff --git a/pkgs/larbs-mail/neomutt_wrapped.nix b/pkgs/larbs-mail/neomutt_wrapped.nix index dc1e467..780bfd4 100644 --- a/pkgs/larbs-mail/neomutt_wrapped.nix +++ b/pkgs/larbs-mail/neomutt_wrapped.nix @@ -23,6 +23,6 @@ in homepage = "https://github.com/LukeSmithXYZ/mutt-wizard"; description = "A system for automatically configuring mutt and isync with a simple interface and safe passwords"; license = licenses.gpl3; - platforms = [ platforms.linux "x86_64-darwin" ]; + platforms = [ "x86_64-darwin" "x86_64-darwin" ]; }; } |