From e6fd44508ebfd5c4a9948420f30bbbac909ab8fd Mon Sep 17 00:00:00 2001 From: Swarsel Date: Sun, 8 Dec 2024 12:24:19 +0100 Subject: [PATCH] fix: cura not working --- SwarselSystems.org | 8 ++++---- pkgs/cura5/default.nix | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/SwarselSystems.org b/SwarselSystems.org index e548c64..2857a86 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -1941,11 +1941,11 @@ The version of =cura= used to be quite outdated in nixpkgs. I am fetching a newe let cura5 = appimageTools.wrapType2 rec { - name = "cura5"; - version = "5.4.0"; + pname = "cura5"; + version = "5.9.0"; src = fetchurl { - url = "https://github.com/Ultimaker/Cura/releases/download/${version}/UltiMaker-Cura-${version}-linux-modern.AppImage"; - hash = "sha256-QVv7Wkfo082PH6n6rpsB79st2xK2+Np9ivBg/PYZd74="; + url = "https://github.com/Ultimaker/Cura/releases/download/${version}/UltiMaker-Cura-${version}-linux-X64.AppImage"; + hash = "sha256-STtVeM4Zs+PVSRO3cI0LxnjRDhOxSlttZF+2RIXnAp4="; }; extraPkgs = pkgs: with pkgs; [ ]; }; diff --git a/pkgs/cura5/default.nix b/pkgs/cura5/default.nix index 3357beb..40f985c 100644 --- a/pkgs/cura5/default.nix +++ b/pkgs/cura5/default.nix @@ -3,11 +3,11 @@ let cura5 = appimageTools.wrapType2 rec { - name = "cura5"; - version = "5.4.0"; + pname = "cura5"; + version = "5.9.0"; src = fetchurl { - url = "https://github.com/Ultimaker/Cura/releases/download/${version}/UltiMaker-Cura-${version}-linux-modern.AppImage"; - hash = "sha256-QVv7Wkfo082PH6n6rpsB79st2xK2+Np9ivBg/PYZd74="; + url = "https://github.com/Ultimaker/Cura/releases/download/${version}/UltiMaker-Cura-${version}-linux-X64.AppImage"; + hash = "sha256-STtVeM4Zs+PVSRO3cI0LxnjRDhOxSlttZF+2RIXnAp4="; }; extraPkgs = pkgs: with pkgs; [ ]; };