From cab868b9a3438f47c3fc370a1352cc3301be125e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 16 Mar 2010 12:51:45 +0000 Subject: [PATCH] pkgs/applications/editors/emacs-modes/magit: download tarball from cryp.to The idea of downloading the source code tarball directly from gitorious.org was great, but didn't work. Apparently, those tarballs have different checksums every time they're generated. To remedy the situation, I've copied the proper tarball statically to . svn path=/nixpkgs/trunk/; revision=20653 --- pkgs/applications/editors/emacs-modes/magit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/magit/default.nix b/pkgs/applications/editors/emacs-modes/magit/default.nix index bd27ed8aa36..ec7e1123128 100644 --- a/pkgs/applications/editors/emacs-modes/magit/default.nix +++ b/pkgs/applications/editors/emacs-modes/magit/default.nix @@ -4,8 +4,8 @@ stdenv.mkDerivation { name = "magit-0.7-94-gbf42bf8"; src = fetchurl { - url = "http://gitorious.org/magit/mainline/archive-tarball/magit_0.7-94-gbf42bf8"; - sha256 = "6543a4e312d1a4249ff1edd192914d02f1a9016c321c8fdd0f015074e522759a"; + url = "http://cryp.to/magit-mainline-0.7-94-gbf42bf8.tar.gz"; + sha256 = "16km4bjp8l011zfqy71jdh0skw829n8r5lgdy6gj996i2bis8hv5"; }; unpackCmd = "tar xf $src"; preConfigure = "./autogen.sh";