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