Cura(engine): Append version to name.

This commit is contained in:
Moritz Ulrich 2014-09-26 12:12:14 +02:00
parent 0b23b5b141
commit 63289f088a
2 changed files with 5 additions and 5 deletions

View file

@ -1,10 +1,10 @@
{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchurl }:
let
py = python27Packages;
version = "14.07";
py = python27Packages;
version = "14.07";
in
stdenv.mkDerivation rec {
name = "cura";
name = "cura-${version}";
src = fetchurl {
url = "https://github.com/daid/Cura/archive/${version}.tar.gz";
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
categories = "GNOME;GTK;Utility;";
};
python_deps = [ py.pyopengl py.pyserial py.numpy py.wxPython30 py.power py.setuptools ];
python_deps = with py; [ pyopengl pyserial numpy wxPython30 power setuptools ];
pythonPath = python_deps;

View file

@ -3,7 +3,7 @@ let
version = "14.03";
in
stdenv.mkDerivation {
name = "curaengine";
name = "curaengine-${version}";
src = fetchurl {
url = "https://github.com/Ultimaker/CuraEngine/archive/${version}.tar.gz";