summary refs log tree commit diff
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
parenta2bd8da766c7a7ea456afd099b86920dd902cec4 (diff)
downloadnixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.tar
nixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.tar.gz
nixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.tar.bz2
nixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.tar.lz
nixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.tar.xz
nixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.tar.zst
nixpkgs-4ef579143c7938b3031aea230b04cbb90f6fe024.zip
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.
-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;
   };
 }