diff --git a/flake.lock b/flake.lock
index dcfc2d0966cbadf4ea8f615b75670ae962a2a9af..8f778711f8b7229ba564a343899b1a04be90ba80 100644
--- a/flake.lock
+++ b/flake.lock
@@ -20,11 +20,11 @@ }
},
"nixpkgs": {
"locked": {
"lastModified": 1709780214,
"narHash": "sha256-p4iDKdveHMhfGAlpxmkCtfQO3WRzmlD11aIcThwPqhk=",
"lastModified": 1710066242,
"narHash": "sha256-bO7kahLdawW7rBqUTfWgf9mdPYrnOo5DGvWRJa9N8Do=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "f945939fd679284d736112d3d5410eb867f3b31c",
"rev": "db339f1706f555794b71aa4eb26a5a240fb6a599",
"type": "github"
},
"original": {
diff --git a/pkgs/darwin/cudatext/bin.nix b/pkgs/darwin/cudatext/bin.nix
index 897ee34d35e7fd534deeeeac964583711fa63244..a48d2fef98085bc14f22ddbedff1d58f545dff1c 100644
--- a/pkgs/darwin/cudatext/bin.nix
+++ b/pkgs/darwin/cudatext/bin.nix
@@ -1,29 +1,29 @@
-{ lib, stdenv, fetchurl, _7zz, makeWrapper, cudatext }:
+{ lib, stdenv, fetchurl, _7zz, unzip, makeWrapper, cudatext }:
stdenv.mkDerivation (finalAttrs: {
pname = "cudatext-bin";
src = {
"aarch64-darwin" = fetchurl {
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-aarch64-${finalAttrs.version}.dmg";
hash = "sha256-w7ypX5tYtAXaEaJgKXqhgH+ORw3yUSg0lOS3RG4lTbY=";
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-aarch64-${finalAttrs.version}.dmg.zip";
hash = "sha256-w7ypX5tYtAXaEaJgKXqhgH2ORw3yUSg0lOS3RG4lTbY=";
};
"x86_64-darwin" = fetchurl {
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-amd64-${finalAttrs.version}.dmg";
hash = "sha256-PBYqfF73/tJ2eHfNWJ5LkjOmqkEQS+Fn/lh5ipNzajU=";
url = "mirror://sourceforge/cudatext/cudatext-macos-cocoa-amd64-${finalAttrs.version}.dmg.zip";
hash = "sha256-9JQx1btljQ4/ybtEoBKQI00KOh9xp+7BEvuMhL2gKcw=";
};
}.${stdenv.hostPlatform.system};
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
mv *.app $out/Applications
makeWrapper $out/{Applications/CudaText.app/Contents/MacOS,bin}/cudatext
diff --git a/pkgs/darwin/zed/default.nix b/pkgs/darwin/zed/default.nix
index db46c568b573b4c5a3855e6ee04aa6e00d9f8c3f..9bcf4ed77ee400fdf7d3947b3e755d5dd2d04084 100644
--- a/pkgs/darwin/zed/default.nix
+++ b/pkgs/darwin/zed/default.nix
@@ -2,11 +2,11 @@ { lib, stdenvNoCC, fetchurl, _7zz }:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "zed";
src = fetchurl {
url = "https://zed.dev/api/releases/stable/${finalAttrs.version}/Zed.dmg";
};
sourceRoot = ".";
application/octet-stream
This content has been proxied by September (3851b).