1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Download git-annex from github instead of git.kitenet.net

git.kitenet.net doesn't allow snapshot downloads anymore, the url
just returns 403 Forbidden.
This commit is contained in:
Gergely Risko 2013-05-13 18:18:18 +02:00
parent 278b255388
commit 972b1a7d50

View file

@ -16,8 +16,8 @@ stdenv.mkDerivation {
name = "git-annex-${version}";
src = fetchurl {
url = "http://git.kitenet.net/?p=git-annex.git;a=snapshot;sf=tgz;h=${version}";
sha256 = "0g89lmkrs02qdb1k1bfq9gz3j4yv35320vb8ddmj99f4nnhqc6vv";
url = "https://github.com/joeyh/git-annex/tarball/${version}";
sha256 = "1280sdj3d3s3k5a1znzl7xzzyncv9kz522bprhwb9if03v6xh2kl";
name = "git-annex-${version}.tar.gz";
};