littlegptracker: fix unstableGitUpdater call

It couldn't get the url from the fetchFromGitHub attrset
wip/yesman
Francesco Gazzetta 3 years ago
parent 93498b1526
commit f9558c6b2b
  1. 4
      pkgs/applications/audio/littlegptracker/default.nix

@ -43,7 +43,9 @@ stdenv.mkDerivation rec {
installPhase = let extension = if stdenv.isDarwin then "app" else "deb-exe";
in "install -Dm555 lgpt.${extension} $out/bin/lgpt";
passthru.updateScript = unstableGitUpdater { };
passthru.updateScript = unstableGitUpdater {
url = "https://github.com/Mdashdotdashn/littlegptracker.git";
};
meta = with lib; {
description = "A music tracker similar to lsdj optimised to run on portable game consoles";

Loading…
Cancel
Save