aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/echoip
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-27 07:33:21 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-27 07:33:21 +0000
commit066db11215a2287a88a80ec71595cd8764563444 (patch)
tree9b463617906764f1e824df6f56f7721d475f3a71 /pkgs/servers/echoip
parent0bba7474b3e6c8cef36960614446447d38ec04c9 (diff)
Revert "Merge pull request #83099 from marsam/fix-buildGoModule-packages-darwin"
This reverts commit 4e6bf03504c9e09f067cc6dee6b5aeec43a1405c, reversing changes made to afd997aab6e9b7a322198092c7828d6c560ac06f. Instead we propagate those frameworks from the compiler again
Diffstat (limited to 'pkgs/servers/echoip')
-rw-r--r--pkgs/servers/echoip/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/servers/echoip/default.nix b/pkgs/servers/echoip/default.nix
index ae6057c34697..b3402933f9fe 100644
--- a/pkgs/servers/echoip/default.nix
+++ b/pkgs/servers/echoip/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildGoModule, fetchFromGitHub, Security }:
+{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule {
pname = "echoip";
@@ -13,8 +13,6 @@ buildGoModule {
modSha256 = "025p891klwpid5fw4z39fimgfkwgkcwqpn5276hflzdp1hfv35ly";
- buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
-
outputs = [ "out" "index" ];
postInstall = ''
@@ -22,7 +20,7 @@ buildGoModule {
cp $src/index.html $index/index.html
'';
- meta = with stdenv.lib; {
+ meta = with lib; {
homepage = https://github.com/mpolden/echoip;
license = licenses.bsd3;
maintainers = with maintainers; [ rvolosatovs ];