summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-09-21 14:08:20 +0800
committerJan Tojnar <jtojnar@gmail.com>2022-10-11 18:52:33 +0200
commit58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa (patch)
tree96acddc3c9be94671393a7e0d1f3cf886000be2f
parentd80a32db1e4d3b0b5e7646e84da30cb0343777d4 (diff)
downloadnixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.tar
nixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.tar.gz
nixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.tar.bz2
nixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.tar.lz
nixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.tar.xz
nixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.tar.zst
nixpkgs-58ed9b3b2a387f1bfcfc9c1525e0c4c76fcc33aa.zip
ostree: Build with libcurl http backend instead of libsoup
https://salsa.debian.org/debian/ostree/-/commit/53261afd32e3772e9ee1484432f6bbb16c38500f
-rw-r--r--pkgs/tools/misc/ostree/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix
index 06176efb01e..42f44c356e8 100644
--- a/pkgs/tools/misc/ostree/default.nix
+++ b/pkgs/tools/misc/ostree/default.nix
@@ -8,6 +8,7 @@
 , gobject-introspection
 , gjs
 , nixosTests
+, curl
 , glib
 , systemd
 , xz
@@ -85,6 +86,7 @@ in stdenv.mkDerivation rec {
   ];
 
   buildInputs = [
+    curl
     glib
     systemd
     e2fsprogs
@@ -108,6 +110,7 @@ in stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   configureFlags = [
+    "--with-curl"
     "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
     "--with-systemdsystemgeneratordir=${placeholder "out"}/lib/systemd/system-generators"
     "--enable-installed-tests"