Skip to content

Commit

Permalink
nix: use https to download git deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rroohhh committed Jan 9, 2025
1 parent f0e0b90 commit 0a913af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/pkgs/frontend.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pkgs.buildNpmPackage (lib.fix (self: {
in lib.attrsets.mapAttrs (name: pkgInfo:
let
src = builtins.fetchGit {
url = pkgInfo.resolved;
url = "https" + lib.removePrefix "git+ssh" pkgInfo.resolved;
rev = lib.last (lib.splitString "#" pkgInfo.resolved);
allRefs = true;
};
Expand Down

0 comments on commit 0a913af

Please sign in to comment.