This is modeled after the upstream commit which removes ureq as a dependency. diff --git a/Cargo.toml b/Cargo.toml index 5a787e1..27171c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -201,26 +201,3 @@ test-external-apis = [] upgrade = ["cli"] vendored-libgit2 = ["git2/vendored-libgit2"] vendored-openssl = ["git2/vendored-openssl"] - -[target."cfg(any(target_arch = \"x86_64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"aarch64\"))".dependencies.ureq] -version = "2.7.1" -features = [ - "tls", - "json", - "socks", - "socks-proxy", -] -default-features = false - -[target."cfg(not(any(target_arch = \"x86_64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"aarch64\")))".dependencies.native-tls] -version = "^0.2" - -[target."cfg(not(any(target_arch = \"x86_64\", target_arch = \"arm\", target_arch = \"x86\", target_arch = \"aarch64\")))".dependencies.ureq] -version = "2.7.1" -features = [ - "native-tls", - "json", - "socks", - "socks-proxy", -] -default-features = false guix/about/'>aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/substitutes.scm
AgeCommit message (Expand)Author
2020-12-11install: Discover local substitute servers....* gnu/installer/substitutes.scm: New file. * gnu/installer/newt/substitutes.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * po/guix/POTFILES.in: Add gnu/installer/newt/substitutes.scm. * gnu/installer/proxy.scm (with-silent-shepherd): Move to ... * gnu/installer/utils.scm: ... here. * gnu/installer/record.scm (<installer>)[substitutes-page]: New field. * gnu/installer/newt.scm (substitutes-page): New procedure, (newt-installer): register it. * gnu/installer.scm (installer-steps): Add "substitutes-page" step. * gnu/system/install.scm (%installation-services): Add avahi-service-type and enable substitute server discover in guix-service-type. [<name-service-switch>]: Set it to %mdns-host-lookup-nss. Mathieu Othacehe