anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / build-support / fetchrepoorcz / default.nix
blob3ac7cace0dcf7073e1dfb015aef1f357e5d95490
1 { fetchzip }:
3 # gitweb example, snapshot support is optional in gitweb
4 { repo, rev, name ? "source"
5 , ... # For hash agility
6 }@args: fetchzip ({
7   inherit name;
8   url = "https://repo.or.cz/${repo}.git/snapshot/${rev}.tar.gz";
9   meta.homepage = "https://repo.or.cz/${repo}.git/";
10 } // removeAttrs args [ "repo" "rev" ]) // { inherit rev; }