itch-setup: remove
This commit is contained in:
parent
deabb657a2
commit
b3080101af
3 changed files with 1 additions and 26 deletions
|
@ -1,24 +0,0 @@
|
|||
{ lib, writeShellScriptBin, steam-run, fetchurl }:
|
||||
let
|
||||
|
||||
pname = "itch-setup";
|
||||
version = "1.26.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://broth.itch.ovh/itch-setup/linux-amd64/${version}/unpacked/default";
|
||||
hash = "sha256-bcJKqhgZK42Irx12BIvbTDMb/DHEOEXljetlDokF7x8=";
|
||||
executable = true;
|
||||
};
|
||||
|
||||
in
|
||||
(writeShellScriptBin pname ''exec ${steam-run}/bin/steam-run ${src} "$@"'') // {
|
||||
|
||||
passthru = { inherit pname version src; };
|
||||
meta = with lib; {
|
||||
description = "An installer for the itch.io desktop app";
|
||||
homepage = "https://github.com/itchio/itch-setup";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ pasqui23 ];
|
||||
};
|
||||
}
|
|
@ -619,6 +619,7 @@ mapAliases ({
|
|||
iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06
|
||||
iproute = iproute2; # moved from top-level 2021-03-14
|
||||
ipsecTools = throw "ipsecTools has benn removed, because it was no longer maintained upstream"; # Added 2021-12-15
|
||||
itch-setup = throw "itch-setup has benn removed, use itch instead"; # Added 2022-06-02
|
||||
|
||||
### J ###
|
||||
|
||||
|
|
|
@ -2429,8 +2429,6 @@ with pkgs;
|
|||
|
||||
itch = callPackage ../games/itch {};
|
||||
|
||||
itch-setup = callPackage ../games/itch-setup {};
|
||||
|
||||
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
|
||||
|
||||
leetcode-cli = callPackage ../applications/misc/leetcode-cli { };
|
||||
|
|
Loading…
Reference in a new issue