summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/flent/http-getter.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/flent/http-getter.nix')
-rw-r--r--pkgs/applications/networking/flent/http-getter.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/flent/http-getter.nix b/pkgs/applications/networking/flent/http-getter.nix
index 2a3d294c5ca6..2967c4e535fe 100644
--- a/pkgs/applications/networking/flent/http-getter.nix
+++ b/pkgs/applications/networking/flent/http-getter.nix
@@ -1,5 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake
-, curl, pkgconfig }:
+{ stdenv, fetchFromGitHub, cmake, curl, pkg-config }:
stdenv.mkDerivation {
pname = "http-getter";
@@ -12,7 +11,8 @@ stdenv.mkDerivation {
sha256 = "0plyqqwfm9bysichda0w3akbdxf6279wd4mx8mda0c4mxd4xy9nl";
};
- buildInputs = [ cmake pkgconfig curl ];
+ nativeBuildInputs = [ cmake pkg-config ];
+ buildInputs = [ curl ];
meta = with stdenv.lib; {
homepage = "https://github.com/tohojo/http-getter";