goku: fix download url

I accidentally merged this even though the url was not correct.
Fixup for https://github.com/NixOS/nixpkgs/pull/168863.
main
Rick van Schijndel 2 years ago
parent e2a1802777
commit 1bd0b4de1f
  1. 12
      pkgs/os-specific/darwin/goku/default.nix

@ -1,14 +1,22 @@
{lib, stdenv, fetchurl }:
{ lib
, stdenv
, fetchurl
, unzip
}:
stdenv.mkDerivation rec {
pname = "goku";
version = "0.5.1";
src = fetchurl {
url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku.tar.gz";
url = "https://github.com/yqrashawn/GokuRakuJoudo/releases/download/v${version}/goku.zip";
sha256 = "7c9304a5b4265575ca154bc0ebc04fcf812d14981775966092946cf82f65c782";
};
nativeBuildInputs = [
unzip
];
sourceRoot = ".";
installPhase = ''

Loading…
Cancel
Save