summary refs log tree commit diff
path: root/pkgs/applications/misc/cura/default.nix
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-09-04 17:04:53 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-09-04 17:05:21 +0200
commit963a554b31d169be83003e6dd64a9c18fd7aae56 (patch)
treedc2189ed73f0e76d24279397b9cce5c861383fb8 /pkgs/applications/misc/cura/default.nix
parent332395b26295f7159ef1f7e606100d7ff3089fb9 (diff)
downloadnixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.tar
nixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.tar.gz
nixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.tar.bz2
nixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.tar.lz
nixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.tar.xz
nixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.tar.zst
nixpkgs-963a554b31d169be83003e6dd64a9c18fd7aae56.zip
cura(engine): update to 14.0{7,3}.
Diffstat (limited to 'pkgs/applications/misc/cura/default.nix')
-rw-r--r--pkgs/applications/misc/cura/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix
index 937025c0840..5c12ebcbfeb 100644
--- a/pkgs/applications/misc/cura/default.nix
+++ b/pkgs/applications/misc/cura/default.nix
@@ -1,15 +1,14 @@
-{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchgit }:
+{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchurl }:
 let
     py = python27Packages;
+    version = "14.07";
 in
 stdenv.mkDerivation rec {
   name = "cura";
 
-  src = fetchgit {
-    url = "https://github.com/daid/Cura";
-    rev = "58414695269d60ca9b165e8cbc3424933ed79403";
-    sha256 = "1nxrrz8sjjx9i9cyvz15vay6yarnywp3vlk7qzr65sw88lzxgq23";
-    fetchSubmodules = false;
+  src = fetchurl {
+    url = "https://github.com/daid/Cura/archive/${version}.tar.gz";
+    sha256 = "1jfgkb2qh1syakcssk66yhnfjm9p9qcx48v34bbza9nryrdlmxdb";
   };
 
   desktopItem = makeDesktopItem {
@@ -67,5 +66,6 @@ stdenv.mkDerivation rec {
     homepage = https://github.com/daid/Cura;
     license = licenses.agpl3;
     platforms = platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ the-kenny ];
   };
 }