summary refs log tree commit diff
path: root/pkgs/tools/package-management
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2018-12-27 21:24:22 +0100
committerJoachim Fasting <joachifm@fastmail.fm>2019-10-05 13:01:39 +0200
commit2858e9838d048f1d5f1bd6c9943df3db13ad4ab6 (patch)
treed094c67518a157274cac80c72f5eb422e069c699 /pkgs/tools/package-management
parent6208273727c27a6bd5111fedc48535bc2d9eb47b (diff)
downloadnixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.tar
nixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.tar.gz
nixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.tar.bz2
nixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.tar.lz
nixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.tar.xz
nixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.tar.zst
nixpkgs-2858e9838d048f1d5f1bd6c9943df3db13ad4ab6.zip
pacman: build with libcurl
Obviates the need to specify a custom Xfer command
Diffstat (limited to 'pkgs/tools/package-management')
-rw-r--r--pkgs/tools/package-management/pacman/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/package-management/pacman/default.nix b/pkgs/tools/package-management/pacman/default.nix
index b81c833063d..f6c43b9ff15 100644
--- a/pkgs/tools/package-management/pacman/default.nix
+++ b/pkgs/tools/package-management/pacman/default.nix
@@ -1,5 +1,5 @@
 { stdenv, lib, fetchurl, autoreconfHook, pkgconfig, perl, libarchive, openssl,
-zlib, bzip2, lzma, runtimeShell }:
+zlib, bzip2, lzma, curl, runtimeShell }:
 
 stdenv.mkDerivation rec {
   pname = "pacman";
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   ];
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
-  buildInputs = [ perl libarchive openssl zlib bzip2 lzma ];
+  buildInputs = [ curl perl libarchive openssl zlib bzip2 lzma ];
 
   postFixup = ''
     substituteInPlace $out/bin/repo-add \