about summary refs log tree commit diff
path: root/pkgs/development/libraries/libssh2
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-11-17 17:23:24 +0000
committerJan Malakhovski <oxij@oxij.org>2019-02-19 20:55:59 +0000
commita1fec8667dceac682f4cd5deeb9dff28fcee5e37 (patch)
tree521418c0a04f11adb679de7c7883203af728ed8d /pkgs/development/libraries/libssh2
parent7226ab90843f8cb366f0e6f90ba16e8214e19bdb (diff)
downloadnixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.tar
nixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.tar.gz
nixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.tar.bz2
nixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.tar.lz
nixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.tar.xz
nixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.tar.zst
nixlib-a1fec8667dceac682f4cd5deeb9dff28fcee5e37.zip
treewide: assemble all `fetchurlBoot` uses in overrides to `fetchurl` itself
The only outside-curl uses of `fetchurlBoot` left are `stdenv`
and `apple-source-releases`. The latter one can probably be removed
too, but I can't test it.

Pros:

- Aggregates all behind-the-scenes insanity in a single place.

Cons:

- At the cost of 10 more derivations (but 0 new outpaths).
Diffstat (limited to 'pkgs/development/libraries/libssh2')
-rw-r--r--pkgs/development/libraries/libssh2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libssh2/default.nix b/pkgs/development/libraries/libssh2/default.nix
index b050dede8c61..0986dee0ca0d 100644
--- a/pkgs/development/libraries/libssh2/default.nix
+++ b/pkgs/development/libraries/libssh2/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, fetchurlBoot, openssl, zlib, windows }:
+{ stdenv, fetchurl, openssl, zlib, windows }:
 
 stdenv.mkDerivation rec {
   name = "libssh2-1.8.0";
 
-  src = fetchurlBoot {
+  src = fetchurl {
     url = "${meta.homepage}/download/${name}.tar.gz";
     sha256 = "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr";
   };