1 { lib, stdenv, fetchFromGitHub, pkg-config, doxygen, cmake, readline }:
3 stdenv.mkDerivation rec {
8 src = fetchFromGitHub {
12 sha256 = "sha256-VMBW3/sw+1kI6iuOckSPU1TIeY6QORcSfFLFkRYw3Gs=";
15 nativeBuildInputs = [ pkg-config cmake doxygen ];
16 buildInputs = [ readline ];
18 # Maybe it clashes with lci scientific logic software package...
19 postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
22 homepage = "http://lolcode.org";
23 description = "Esoteric programming language";
25 LOLCODE is a funny esoteric programming language, a bit Pascal-like,
26 whose keywords are LOLspeak.
28 license = licenses.gpl3;
29 maintainers = [ maintainers.AndersonTorres ];
30 mainProgram = "lolcode-lci";
31 platforms = lib.platforms.unix;