goku: 0.7.2 -> 0.8.0 (#384578)

This commit is contained in:
Peder Bergebakken Sundt
2025-03-02 17:20:43 +01:00
committed by GitHub
+4 -3
View File
@@ -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;