Unverified Commit 35adbd98 authored by Alexis Hildebrandt's avatar Alexis Hildebrandt Committed by GitHub
Browse files

keymapp: use versioned url for darwin src (#461988)

parents 16c4e805 0d8dfcdf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{
  stdenv,
  stdenvNoCC,
  undmg,
  pname,
  version,
@@ -7,7 +7,7 @@
  meta,
  ...
}:
stdenv.mkDerivation {
stdenvNoCC.mkDerivation {
  inherit
    pname
    version
+1 −3
Original line number Diff line number Diff line
@@ -18,9 +18,7 @@ let

  sources = rec {
    aarch64-darwin = {
      # Upstream does not provide archives of previous versions,
      # therefore a capture using the wayback machine is used
      url = "https://web.archive.org/web/20250520135916/https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-latest.dmg";
      url = "https://oryx.nyc3.cdn.digitaloceanspaces.com/keymapp/keymapp-${version}.dmg";
      hash = "sha256-H6xRau7pWuSF5Aa6lblwi/Lg5KxC+HM3rtUMjX+hEE8=";
    };
    x86_64-darwin = aarch64-darwin;