From e675d7bb8ce6c6a61c4ec41ab2f728429751c3f3 Mon Sep 17 00:00:00 2001 From: Niten Date: Mon, 23 Nov 2020 15:30:34 -0800 Subject: [PATCH] pkgs.fetchgit instead of lib.fetchgit --- cl-sasl.nix | 2 +- cl-xmpp.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cl-sasl.nix b/cl-sasl.nix index 8c8b745..cd9e7a9 100644 --- a/cl-sasl.nix +++ b/cl-sasl.nix @@ -1,7 +1,7 @@ { pkgs, lib, buildLisp, ... }: let - cl-sasl-path = lib.fetchgit { + cl-sasl-path = pkgs.fetchgit { url = "https://github.com/legoscia/cl-sasl.git"; rev = "64f195c0756cb80fa5961c072b62907be20a7380"; sha256 = "0a05q8rls2hn46rbbk6w5km9kqvhsj365zlw6hp32724xy2nd98w"; diff --git a/cl-xmpp.nix b/cl-xmpp.nix index 4626b4f..4aab020 100644 --- a/cl-xmpp.nix +++ b/cl-xmpp.nix @@ -1,7 +1,7 @@ { pkgs, lib, cl-sasl, buildLisp, ... }: let - cl-xmpp-path = lib.fetchgit { + cl-xmpp-path = pkgs.fetchgit { url = "https://github.com/j4yk/cl-xmpp.git"; rev = "a0f206e583c72d80523bdf108e7d507597555c6d"; sha256 = "16qwm7yvwi73q07rsg0i5wrxbv44wm75m3710ph0vf1lzdkrsizk";