Unverified Commit 7ca3f7be authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

goku: 0.7.2 -> 0.8.0 (#384578)

parents 7c9f14f9 5e782690
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -9,18 +9,18 @@

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "goku";
  version = "0.7.2";
  version = "0.8.0";

  src =
    if stdenvNoCC.hostPlatform.isAarch64 then
      fetchurl {
        url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${finalAttrs.version}/goku-arm.zip";
        hash = "sha256-mjz1JD12U23Pi8kumELtT9ENhXpX8Db4LUS3DOtP5GM=";
        hash = "sha256-yRLxUfAQZ+rE7/42wnjls6UnT+vb/b5Y3lVWujZGEAg=";
      }
    else
      fetchurl {
        url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${finalAttrs.version}/goku.zip";
        hash = "sha256-8HdIwtpzR6O2WCbMYIJ6PHcM27Xmb+4Tc5Fmjl0dABQ=";
        hash = "sha256-hbk7QF0kTeBcot4OFV/yhVOUV/OpE44d/7nofdoBipg=";
      };

  nativeBuildInputs = [ unzip ];
@@ -40,6 +40,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
  '';

  meta = {
    changelog = "https://github.com/yqrashawn/GokuRakuJoudo/blob/v${finalAttrs.version}/CHANGELOG.org";
    description = "Karabiner configurator";
    homepage = "https://github.com/yqrashawn/GokuRakuJoudo";
    license = lib.licenses.gpl3;