summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-05-24 13:27:22 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:04:20 +0200
commit1fa79a7af7eb5bbc428a0cfc8ce092bba3e81443 (patch)
tree347ba9312466b1c275c7eabfec28949f9996b536
parent0d9e322d3079e6dc8b0bb1ced153a4674ea450c1 (diff)
downloadNUR-1fa79a7af7eb5bbc428a0cfc8ce092bba3e81443.tar.gz
NUR-1fa79a7af7eb5bbc428a0cfc8ce092bba3e81443.tar.zst
NUR-1fa79a7af7eb5bbc428a0cfc8ce092bba3e81443.zip
Replace fetchgitPrivate by its builtins counterpart
-rw-r--r--libs.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs.nix b/libs.nix
index 2ddfcbb5..48787af1 100644
--- a/libs.nix
+++ b/libs.nix
@@ -36,7 +36,11 @@ rec {
36 in rec { 36 in rec {
37 version = json.tag; 37 version = json.tag;
38 name = "${json.meta.name}-${version}"; 38 name = "${json.meta.name}-${version}";
39 src = fetchgitPrivate json.git; 39 src = builtins.fetchGit {
40 url = json.git.url;
41 ref = "master";
42 rev = json.git.rev;
43 };
40 }; 44 };
41 45
42 wrap = { paths ? [], vars ? {}, file ? null, script ? null, name ? "wrap" }: 46 wrap = { paths ? [], vars ? {}, file ? null, script ? null, name ? "wrap" }: