littlegptracker: fix unstableGitUpdater call
It couldn't get the url from the fetchFromGitHub attrset
This commit is contained in:
parent
93498b1526
commit
f9558c6b2b
1 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue