summary refs log tree commit diff
path: root/pkgs/applications/audio/littlegptracker
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2021-02-09 22:28:58 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2021-02-09 22:29:00 +0100
commitf9558c6b2b3ad7c6e91816b75408e4117bfd07e0 (patch)
tree941a9ed056befa33b52d3f58e9e45df6210a3f2d /pkgs/applications/audio/littlegptracker
parent93498b15264bb796d4ff3a08971b96847cdd9391 (diff)
downloadnixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.tar
nixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.tar.gz
nixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.tar.bz2
nixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.tar.lz
nixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.tar.xz
nixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.tar.zst
nixpkgs-f9558c6b2b3ad7c6e91816b75408e4117bfd07e0.zip
littlegptracker: fix unstableGitUpdater call
It couldn't get the url from the fetchFromGitHub attrset
Diffstat (limited to 'pkgs/applications/audio/littlegptracker')
-rw-r--r--pkgs/applications/audio/littlegptracker/default.nix4
1 files changed, 3 insertions, 1 deletions
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";