summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-09-25 15:40:28 +0200
committerMatthias Beyer <mail@beyermatthias.de>2015-09-25 15:40:28 +0200
commit1adaab27e2863d639686de7b589f44621a225242 (patch)
treed81becf2a035a310a10867e77eb0d738d2a5e6dc /pkgs/applications
parent0a818afe22ca207e3304c357b7429c159b8f9b31 (diff)
downloadnixlib-1adaab27e2863d639686de7b589f44621a225242.tar
nixlib-1adaab27e2863d639686de7b589f44621a225242.tar.gz
nixlib-1adaab27e2863d639686de7b589f44621a225242.tar.bz2
nixlib-1adaab27e2863d639686de7b589f44621a225242.tar.lz
nixlib-1adaab27e2863d639686de7b589f44621a225242.tar.xz
nixlib-1adaab27e2863d639686de7b589f44621a225242.tar.zst
nixlib-1adaab27e2863d639686de7b589f44621a225242.zip
joe: Move version to own variable
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/joe/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/joe/default.nix b/pkgs/applications/editors/joe/default.nix
index 14cfd81586ca..b08f98a054c2 100644
--- a/pkgs/applications/editors/joe/default.nix
+++ b/pkgs/applications/editors/joe/default.nix
@@ -1,7 +1,8 @@
 { stdenv, fetchurl } :
 
 stdenv.mkDerivation rec {
-  name = "joe-4.1";
+  version = "4.1";
+  name = "joe-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/joe-editor/${name}.tar.gz";