
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
80 lines
2.0 KiB
Nix
80 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cowsay,
|
|
coreutils,
|
|
findutils,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "pokemonsay";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "HRKings";
|
|
repo = "pokemonsay-newgenerations";
|
|
rev = "v${version}";
|
|
hash = "sha256-IDTAZmOzkUg0kLUM0oWuVbi8EwE4sEpLWrNAtq/he+g=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# https://github.com/HRKings/pokemonsay-newgenerations/pull/5
|
|
name = "word-wrap-fix.patch";
|
|
url = "https://github.com/pbsds/pokemonsay-newgenerations/commit/7056d7ba689479a8e6c14ec000be1dfcd83afeb0.patch";
|
|
hash = "sha256-aqUJkyJDWArLjChxLZ4BbC6XAB53LAqARzTvEAxrFCI=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pokemonsay.sh \
|
|
--replace-fail \
|
|
'INSTALL_PATH=''${HOME}/.bin/pokemonsay' \
|
|
"" \
|
|
--replace-fail \
|
|
'POKEMON_PATH=''${INSTALL_PATH}/pokemons' \
|
|
'POKEMON_PATH=${placeholder "out"}/share/pokemonsay' \
|
|
--replace-fail \
|
|
'$(find ' \
|
|
'$(${findutils}/bin/find ' \
|
|
--replace-fail \
|
|
'$(basename ' \
|
|
'$(${coreutils}/bin/basename ' \
|
|
--replace-fail \
|
|
'cowsay -f ' \
|
|
'${cowsay}/bin/cowsay -f ' \
|
|
--replace-fail \
|
|
'cowthink -f ' \
|
|
'${cowsay}/bin/cowthink -f '
|
|
|
|
substituteInPlace pokemonthink.sh \
|
|
--replace-fail \
|
|
'./pokemonsay.sh' \
|
|
"${placeholder "out"}/bin/pokemonsay"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share/pokemonsay}
|
|
cp pokemonsay.sh $out/bin/pokemonsay
|
|
cp pokemonthink.sh $out/bin/pokemonthink
|
|
cp pokemons/*.cow $out/share/pokemonsay
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
(set -x
|
|
test "$($out/bin/pokemonsay --list | wc -l)" -ge 891
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Print pokemon in the CLI! An adaptation of the classic cowsay";
|
|
homepage = "https://github.com/HRKings/pokemonsay-newgenerations";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ pbsds ];
|
|
};
|
|
}
|