2016-08-10 02:41:30 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, doxygen, cmake, readline }:
|
2015-02-04 03:27:14 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "lolcode";
|
2016-04-12 22:20:57 +02:00
|
|
|
version = "0.11.2";
|
2015-02-04 03:27:14 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/justinmeza/lci/archive/v${version}.tar.gz";
|
2016-04-12 22:20:57 +02:00
|
|
|
sha256 = "1li7ikcrs7wqah7gqkirg0k61n6pm12w7pydin966x1sdn9na46b";
|
2015-02-04 03:27:14 +01:00
|
|
|
};
|
|
|
|
|
2016-08-10 02:41:30 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake doxygen ];
|
|
|
|
buildInputs = [ readline ];
|
2015-02-04 03:27:14 +01:00
|
|
|
|
|
|
|
# Maybe it clashes with lci scientific logic software package...
|
|
|
|
postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://lolcode.org";
|
2015-02-04 03:27:14 +01:00
|
|
|
description = "An esoteric programming language";
|
|
|
|
longDescription = ''
|
|
|
|
LOLCODE is a funny esoteric programming language, a bit Pascal-like,
|
|
|
|
whose keywords are LOLspeak.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2015-02-04 03:27:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|