bwm_ng: Move version to own variable

This commit is contained in:
Matthias Beyer 2015-09-25 15:33:42 +02:00
parent bc2dc7de5e
commit 8ca7e4c2d1
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
{ stdenv, fetchurl, ncurses }:
let
version = "0.6.1";
in
stdenv.mkDerivation rec {
name = "bwm-ng-0.6.1";
name = "bwm-ng-${version}";
src = fetchurl {
url = "http://www.gropp.org/bwm-ng/${name}.tar.gz";