goku: format with nixfmt-rfc-style

This commit is contained in:
DontEatOreo 2024-11-02 16:33:13 +02:00
parent 9178294836
commit a41f2a9ba2
No known key found for this signature in database
GPG Key ID: 0DB5361BEEE530AB

View File

@ -1,31 +1,30 @@
{ lib
, stdenv
, fetchurl
, unzip
, joker
{
lib,
stdenv,
fetchurl,
unzip,
joker,
}:
stdenv.mkDerivation rec {
pname = "goku";
version = "0.6.0";
src = if stdenv.hostPlatform.isAarch64 then
fetchurl {
url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku-arm.zip";
hash = "sha256-TIoda2kDckK1FBLAmKudsDs3LXO4J0KWiAD2JlFb4rk=";
}
else fetchurl {
url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku.zip";
hash = "sha256-8HdIwtpzR6O2WCbMYIJ6PHcM27Xmb+4Tc5Fmjl0dABQ=";
};
src =
if stdenv.hostPlatform.isAarch64 then
fetchurl {
url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku-arm.zip";
hash = "sha256-TIoda2kDckK1FBLAmKudsDs3LXO4J0KWiAD2JlFb4rk=";
}
else
fetchurl {
url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku.zip";
hash = "sha256-8HdIwtpzR6O2WCbMYIJ6PHcM27Xmb+4Tc5Fmjl0dABQ=";
};
nativeBuildInputs = [
unzip
];
nativeBuildInputs = [ unzip ];
buildInputs = [
joker
];
buildInputs = [ joker ];
sourceRoot = if stdenv.hostPlatform.isAarch64 then "goku" else ".";