about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-09-26 12:12:14 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-10-01 20:26:02 +0200
commit63289f088a1f3d893d863072e03d1a71b98a8465 (patch)
treeb000b5d6da373d03b1bf9663ba582a951b2da71b /pkgs/applications/misc
parent0b23b5b141ec4262952ba6fb428cb5b6dc56e2a1 (diff)
downloadnixlib-63289f088a1f3d893d863072e03d1a71b98a8465.tar
nixlib-63289f088a1f3d893d863072e03d1a71b98a8465.tar.gz
nixlib-63289f088a1f3d893d863072e03d1a71b98a8465.tar.bz2
nixlib-63289f088a1f3d893d863072e03d1a71b98a8465.tar.lz
nixlib-63289f088a1f3d893d863072e03d1a71b98a8465.tar.xz
nixlib-63289f088a1f3d893d863072e03d1a71b98a8465.tar.zst
nixlib-63289f088a1f3d893d863072e03d1a71b98a8465.zip
Cura(engine): Append version to name.
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/cura/default.nix8
-rw-r--r--pkgs/applications/misc/curaengine/default.nix2
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix
index 5c12ebcbfeba..c290cdfb6908 100644
--- a/pkgs/applications/misc/cura/default.nix
+++ b/pkgs/applications/misc/cura/default.nix
@@ -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;
 
diff --git a/pkgs/applications/misc/curaengine/default.nix b/pkgs/applications/misc/curaengine/default.nix
index e004b7db336c..bb818e9236c3 100644
--- a/pkgs/applications/misc/curaengine/default.nix
+++ b/pkgs/applications/misc/curaengine/default.nix
@@ -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";