diff options
author | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
commit | 060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch) | |
tree | 2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/nx_game_info | |
parent | cbfcc890e3b76d942b927809bf981a5fa7289e6a (diff) |
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/nx_game_info')
-rw-r--r-- | makefu/5pkgs/nx_game_info/default.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/makefu/5pkgs/nx_game_info/default.nix b/makefu/5pkgs/nx_game_info/default.nix deleted file mode 100644 index bf64dc90e..000000000 --- a/makefu/5pkgs/nx_game_info/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ lib, stdenv, fetchurl , mono , unzip, -}: -stdenv.mkDerivation rec { - pname = "NX_Game_Info"; - name = "${pname}-${version}"; - version = "0.7.1"; - - src = fetchurl { - url = "https://github.com/garoxas/NX_Game_Info/releases/download/v${version}/NX.Game.Info_${version}_cli.zip"; - sha256 = "179hkgraydm5hg5fcs1xwh07cx7rbcfwklfak83f0sl1pbya542h"; - }; - - sourceRoot = "."; - buildInputs = [ unzip ]; - buildPhase = ":"; - installPhase = '' - mkdir -p $out/{bin,lib} - cp * $out/lib/ - cat > $out/bin/nxgameinfo_cli <<EOF - ${mono}/bin/mono $out/lib/nxgameinfo_cli.exe "\$@" - EOF - chmod +x $out/bin/nxgameinfo_cli - ''; - - meta = { - description = "Tool to read information from Nintendo Switch game files"; - homepage = https://github.com/garoxas/NX_Game_Info; - license = lib.licenses.gpl3; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ makefu ]; - }; -} |