1 { lib, stdenv, fetchurl, pkg-config, doxygen, cmake, readline }:
4 stdenv.mkDerivation rec {
10 url = "https://github.com/justinmeza/lci/archive/v${version}.tar.gz";
11 sha256 = "1li7ikcrs7wqah7gqkirg0k61n6pm12w7pydin966x1sdn9na46b";
14 nativeBuildInputs = [ pkg-config cmake doxygen ];
15 buildInputs = [ readline ];
17 # Maybe it clashes with lci scientific logic software package...
18 postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
21 homepage = "http://lolcode.org";
22 description = "An esoteric programming language";
24 LOLCODE is a funny esoteric programming language, a bit Pascal-like,
25 whose keywords are LOLspeak.
27 license = licenses.gpl3;
28 maintainers = [ maintainers.AndersonTorres ];
29 platforms = lib.platforms.unix;