python311Packages.moto: 4.2.6 -> 4.2.10
[NixPkgs.git] / pkgs / build-support / fetchsavannah / default.nix
blobe75e25fc1e70b64803ee94647d3edfbc1fffb03a
1 { fetchzip, lib }:
3 lib.makeOverridable (
4 # cgit example, snapshot support is optional in cgit
5 { repo, rev, name ? "source"
6 , ... # For hash agility
7 }@args: fetchzip ({
8   inherit name;
9   url = "https://git.savannah.gnu.org/cgit/${repo}.git/snapshot/${repo}-${rev}.tar.gz";
10   meta.homepage = "https://git.savannah.gnu.org/cgit/${repo}.git/";
11 } // removeAttrs args [ "repo" "rev" ]) // { inherit rev; }