aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/http-prompt
diff options
context:
space:
mode:
authorChristoph Neuroth <christoph.neuroth@gmail.com>2019-08-17 07:41:15 +0200
committerChristoph Neuroth <christoph.neuroth@gmail.com>2019-08-17 07:58:19 +0200
commit4ef579143c7938b3031aea230b04cbb90f6fe024 (patch)
tree43751579b5f5739934031b776231e100b3763483 /pkgs/tools/networking/http-prompt
parenta2bd8da766c7a7ea456afd099b86920dd902cec4 (diff)
http-prompt: Allow installation on Mac OS
The original pkg author noted that they could only test on linux. I'm running this package on Mac OS without problems.
Diffstat (limited to 'pkgs/tools/networking/http-prompt')
-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 78dc52905d8..cfd4658f63f 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;
};
}