1{ stdenv, fetchurl, pkgconfig, doxygen, cmake }: 2 3with stdenv.lib; 4stdenv.mkDerivation rec { 5 6 name = "lolcode-${version}"; 7 version = "0.10.5"; 8 9 src = fetchurl { 10 url = "https://github.com/justinmeza/lci/archive/v${version}.tar.gz"; 11 sha256 = "0g6k1jxnvgjxyidrvgk8pdb8y8mai456j9zpzmvhm6fr22c4skrc"; 12 }; 13 14 buildInputs = [ pkgconfig doxygen cmake ]; 15 16 # Maybe it clashes with lci scientific logic software package... 17 postInstall = "mv $out/bin/lci $out/bin/lolcode-lci"; 18 19 meta = { 20 homepage = http://lolcode.org; 21 description = "An esoteric programming language"; 22 longDescription = '' 23 LOLCODE is a funny esoteric programming language, a bit Pascal-like, 24 whose keywords are LOLspeak. 25 ''; 26 license = licenses.gpl3; 27 maintainers = [ maintainers.AndersonTorres ]; 28 }; 29 30}