pkgs/applications/editors/emacs-modes/magit: fixed cut&paste error in name attribute

Thanks, Eelco!

svn path=/nixpkgs/trunk/; revision=20780
This commit is contained in:
Peter Simons 2010-03-23 12:29:21 +00:00
parent bba9ecdbac
commit 47e93b4177

View file

@ -1,10 +1,13 @@
{stdenv, fetchurl, emacs, texinfo, autoconf, automake}:
let
version = "0.7-109-g0fc3980";
in
stdenv.mkDerivation {
name = "magit-0.7-109-g0fc3980.tar.gz";
name = "magit-${version}";
src = fetchurl {
url = "http://cryp.to/magit-mainline-0.7-109-g0fc3980.tar.gz";
url = "http://cryp.to/magit-mainline-${version}.tar.gz";
sha256 = "0jyx57znvn49xm0h92kh8iywn44ip130dpflzq2ns2k6gspg36b6";
};
unpackCmd = "tar xf $src";