Unverified Commit a41f2a9b authored by DontEatOreo's avatar DontEatOreo
Browse files

goku: format with `nixfmt-rfc-style`

parent 91782948
Loading
Loading
Loading
Loading
+19 −20
Original line number Diff line number Diff line
{ 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
  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 {
    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 ".";