From f9558c6b2b3ad7c6e91816b75408e4117bfd07e0 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Tue, 9 Feb 2021 22:28:58 +0100 Subject: [PATCH] littlegptracker: fix unstableGitUpdater call It couldn't get the url from the fetchFromGitHub attrset --- pkgs/applications/audio/littlegptracker/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/audio/littlegptracker/default.nix b/pkgs/applications/audio/littlegptracker/default.nix index 638f54da515..4d7d70aebd6 100644 --- a/pkgs/applications/audio/littlegptracker/default.nix +++ b/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";