mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
33 lines
906 B
Nix
33 lines
906 B
Nix
{ stdenv, fetchurl, pkgconfig, doxygen, cmake, readline }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lolcode-${version}";
|
|
version = "0.11.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/justinmeza/lci/archive/v${version}.tar.gz";
|
|
sha256 = "1li7ikcrs7wqah7gqkirg0k61n6pm12w7pydin966x1sdn9na46b";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake doxygen ];
|
|
buildInputs = [ readline ];
|
|
|
|
# Maybe it clashes with lci scientific logic software package...
|
|
postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
|
|
|
|
meta = {
|
|
homepage = http://lolcode.org;
|
|
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 ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
|
|
}
|