Cura(engine): Append version to name.
This commit is contained in:
parent
0b23b5b141
commit
63289f088a
|
@ -1,10 +1,10 @@
|
||||||
{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchurl }:
|
{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchurl }:
|
||||||
let
|
let
|
||||||
py = python27Packages;
|
py = python27Packages;
|
||||||
version = "14.07";
|
version = "14.07";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "cura";
|
name = "cura-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/daid/Cura/archive/${version}.tar.gz";
|
url = "https://github.com/daid/Cura/archive/${version}.tar.gz";
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
categories = "GNOME;GTK;Utility;";
|
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;
|
pythonPath = python_deps;
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ let
|
||||||
version = "14.03";
|
version = "14.03";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "curaengine";
|
name = "curaengine-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/Ultimaker/CuraEngine/archive/${version}.tar.gz";
|
url = "https://github.com/Ultimaker/CuraEngine/archive/${version}.tar.gz";
|
||||||
|
|
Loading…
Reference in New Issue