aboutsummaryrefslogtreecommitdiff
path: root/pkgs/pokemon-colorscripts
diff options
context:
space:
mode:
authorspl3g <notspl3g@duck.com>2026-03-18 18:01:41 +0300
committerspl3g <notspl3g@duck.com>2026-03-18 18:01:59 +0300
commit03648b3d9f177227df40129bed22558f6924b91c (patch)
tree8a22eda142beeafd9002a8d5901ba9428a77ad52 /pkgs/pokemon-colorscripts
parentdc19a2b583b3ab50d8e36ff0a90ca633495f675f (diff)
so.. v2 i guess
Diffstat (limited to 'pkgs/pokemon-colorscripts')
-rw-r--r--pkgs/pokemon-colorscripts/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/pokemon-colorscripts/default.nix b/pkgs/pokemon-colorscripts/default.nix
deleted file mode 100644
index 6fa8e28..0000000
--- a/pkgs/pokemon-colorscripts/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchFromGitLab, python3 }:
-
-stdenv.mkDerivation rec {
- pname = "pokemon-colorscripts";
- version = "r108.3dc0b2e";
- src = fetchFromGitLab {
- owner = "phoneybadger";
- repo = "${pname}";
- rev = "0483c85b93362637bdd0632056ff986c07f30868";
- sha256 = "1c5pi7y87ng6qa3k287fq66spdl3ynckvxf86srd9fy2h4ljlgdf";
- };
- buildInputs = [ python3 ];
- preInstall = ''
- rm -rf "$out/usr/local/opt/${pname}"
- mkdir -p "$out/usr/local/opt/${pname}/colorscripts/regular"
- mkdir -p "$out/usr/local/opt/${pname}/colorscripts/shiny"
- mkdir -p "$out/bin"
- install -Dm644 colorscripts/small/regular/* -t "$out/usr/local/opt/${pname}/colorscripts/small/regular"
- install -Dm644 colorscripts/small/shiny/* -t "$out/usr/local/opt/${pname}/colorscripts/small/shiny"
- install -Dm644 colorscripts/large/regular/* -t "$out/usr/local/opt/${pname}/colorscripts/large/regular"
- install -Dm644 colorscripts/large/shiny/* -t "$out/usr/local/opt/${pname}/colorscripts/large/shiny"
- install -Dm644 pokemon.json "$out/usr/local/opt/${pname}/pokemon.json"
- install -Dm755 pokemon-colorscripts.py "$out/usr/local/opt/${pname}/pokemon-colorscripts.py"
- install -Dm644 LICENSE.txt "$out/usr/share/licenses/${pname}/LICENSE"
- install -Dm644 README.md "$out/usr/share/doc/${pname}/README.md"
- install -Dm644 pokemon-colorscripts.1 "$out/usr/local/man/man1/pokemon-colorscripts.1"
- ln -sf $out/usr/local/opt/${pname}/pokemon-colorscripts.py $out/bin/pokemon-colorscripts
-'';
-}