about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-08-17 23:53:51 +0200
committerGitHub <noreply@github.com>2019-08-17 23:53:51 +0200
commit37c22b49f5202a0993b7ef95f23217cacb892955 (patch)
tree8e9c2ba5c36d5f344f63a6c08362b959ee573a36
parent9399e2bf592d017f686fd8fcdf9025fed72c4493 (diff)
parent4ef579143c7938b3031aea230b04cbb90f6fe024 (diff)
Merge pull request #66743 from c089/patch-1
http-prompt: Allow installation on Mac OS
-rw-r--r--pkgs/tools/networking/http-prompt/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/http-prompt/default.nix b/pkgs/tools/networking/http-prompt/default.nix
index 78dc52905d834..cfd4658f63f8d 100644
--- a/pkgs/tools/networking/http-prompt/default.nix
+++ b/pkgs/tools/networking/http-prompt/default.nix
@@ -30,6 +30,6 @@ pythonPackages.buildPythonApplication rec {
     homepage = https://github.com/eliangcs/http-prompt;
     license = licenses.mit;
     maintainers = with maintainers; [ matthiasbeyer ];
-    platforms = platforms.linux; # can only test on linux
+    platforms = platforms.linux ++ platforms.darwin;
   };
 }