blob: 6fa8e286e59a200251cd318e97862642249decd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ 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
'';
}
|