mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
37 lines
978 B
Nix
37 lines
978 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
perl,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "asciiquarium-transparent";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nothub";
|
|
repo = "asciiquarium";
|
|
rev = "${finalAttrs.version}";
|
|
hash = "sha256-zQyVIfwmhF3WsCeIZLwjDufvKzAfjLxaK2s7WTedqCg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ perl ];
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm555 asciiquarium -t $out/bin
|
|
wrapProgram $out/bin/asciiquarium \
|
|
--set PERL5LIB ${with perl.pkgs; makeFullPerlPath [ TermAnimation ]}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Aquarium/sea animation in ASCII art (with option of transparent background)";
|
|
homepage = "https://github.com/nothub/asciiquarium";
|
|
license = lib.licenses.gpl2Only;
|
|
mainProgram = "asciiquarium";
|
|
maintainers = with lib.maintainers; [ quantenzitrone ];
|
|
platforms = perl.meta.platforms;
|
|
};
|
|
})
|