summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-03-23 12:29:21 +0000
committerPeter Simons <simons@cryp.to>2010-03-23 12:29:21 +0000
commit47e93b41775c27ce5b9c15557785d577f1584572 (patch)
tree3aaef93ad1cddc0a1f5a7b1edabb8942ce83b0db /pkgs
parentbba9ecdbac1d629ba7ae8ad1c4ae544a138ad50d (diff)
downloadnixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.tar
nixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.tar.gz
nixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.tar.bz2
nixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.tar.lz
nixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.tar.xz
nixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.tar.zst
nixpkgs-47e93b41775c27ce5b9c15557785d577f1584572.zip
pkgs/applications/editors/emacs-modes/magit: fixed cut&paste error in name attribute
Thanks, Eelco!

svn path=/nixpkgs/trunk/; revision=20780
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/emacs-modes/magit/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/editors/emacs-modes/magit/default.nix b/pkgs/applications/editors/emacs-modes/magit/default.nix
index f3227374f69..4f0b760ae20 100644
--- a/pkgs/applications/editors/emacs-modes/magit/default.nix
+++ b/pkgs/applications/editors/emacs-modes/magit/default.nix
@@ -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";