summary refs log tree commit diff
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-02-05 13:13:14 +0100
committerLuca Bruno <lethalman88@gmail.com>2015-02-05 13:13:14 +0100
commit4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb (patch)
tree9d4f0ac7cc2e0febe2dfab9a2e850357eeaad0ed
parente6e4c867e5f9a4971a3234c0db2f8be712236673 (diff)
downloadnixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.tar
nixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.tar.gz
nixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.tar.bz2
nixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.tar.lz
nixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.tar.xz
nixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.tar.zst
nixlib-4ce497e74f3aaf2fb1c0c9521505568c61a7ccbb.zip
Use buildFlags in buildGoPackage instead of makeFlags
-rw-r--r--pkgs/applications/networking/pond/default.nix2
-rw-r--r--pkgs/tools/misc/ngrok/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/pond/default.nix b/pkgs/applications/networking/pond/default.nix
index cec1619f32ef..8e89d75dd546 100644
--- a/pkgs/applications/networking/pond/default.nix
+++ b/pkgs/applications/networking/pond/default.nix
@@ -16,7 +16,7 @@ buildGoPackage rec {
 
   buildInputs = [ trousers net crypto protobuf ed25519 ];
     
-  makeFlags = "--tags nogui";
+  buildFlags = "--tags nogui";
 
   meta = with lib; {
     description = "Forward secure, asynchronous messaging for the discerning";
diff --git a/pkgs/tools/misc/ngrok/default.nix b/pkgs/tools/misc/ngrok/default.nix
index e91278c5037c..fa890cfe0fc1 100644
--- a/pkgs/tools/misc/ngrok/default.nix
+++ b/pkgs/tools/misc/ngrok/default.nix
@@ -27,7 +27,7 @@ buildGoPackage rec {
   buildInputs = [ git log4go websocket go-vhost mousetrap termbox-go rcrowley.go-metrics
                   yaml-v1 go-bindata go-update binarydist osext ];
 
-  makeFlags = "-tags release";
+  buildFlags = "-tags release";
 
   meta = with stdenv.lib; {
     description = "Reverse proxy that creates a secure tunnel between from a public endpoint t