2019-01-18 00:01:14 +01:00
|
|
|
{ stdenv, fetchurl, makeWrapper, perlPackages }:
|
|
|
|
|
|
|
|
let version = "1.1";
|
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "asciiquarium";
|
|
|
|
inherit version;
|
2019-01-18 00:01:14 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://robobunny.com/projects/asciiquarium/asciiquarium_${version}.tar.gz";
|
|
|
|
sha256 = "0qfkr5b7sxzi973nh0h84blz2crvmf28jkkgaj3mxrr56mhwc20v";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perlPackages.perl ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp asciiquarium $out/bin
|
|
|
|
chmod +x $out/bin/asciiquarium
|
|
|
|
wrapProgram $out/bin/asciiquarium \
|
|
|
|
--set PERL5LIB ${perlPackages.makeFullPerlPath [ perlPackages.TermAnimation ] }
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Enjoy the mysteries of the sea from the safety of your own terminal!";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://robobunny.com/projects/asciiquarium/html/";
|
2019-01-18 00:01:14 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.utdemir ];
|
|
|
|
};
|
|
|
|
}
|