init pokemon-colorscripts

This commit is contained in:
Danilo Reyes 2025-01-09 12:28:05 -06:00
parent ede7c1c0e0
commit e8a367ef38

View File

@ -0,0 +1,41 @@
{
lib,
pkgs,
}:
pkgs.stdenv.mkDerivation {
pname = "pokemon-colorscripts";
version = "main";
src = pkgs.fetchFromGitLab {
owner = "phoneybadger";
repo = "pokemon-colorscripts";
rev = "0483c85b93362637bdd0632056ff986c07f30868";
sha256 = "sha256-rj0qKYHCu9SyNsj1PZn1g7arjcHuIDGHwubZg/yJt7A=";
};
buildInputs = with pkgs; [
bash
python3
];
installPhase = ''
mkdir -p $out/opt/pokemon-colorscripts
mkdir -p $out/bin
cp -r colorscripts $out/opt/pokemon-colorscripts
cp pokemon-colorscripts.py $out/opt/pokemon-colorscripts
cp pokemon.json $out/opt/pokemon-colorscripts
ln -s $out/opt/pokemon-colorscripts/pokemon-colorscripts.py $out/bin/pokemon-colorscripts
chmod +x $out/bin/pokemon-colorscripts
'';
meta = with lib; {
description = "CLI utility to print out images of pokemon to terminal";
homepage = "https://gitlab.com/phoneybadger/pokemon-colorscripts";
license = licenses.mit;
platforms = platforms.all;
mainProgram = "pokemon-colorscripts";
};
}