Commit 750c09c9 authored by Arseniy Seroka's avatar Arseniy Seroka
Browse files

Merge pull request #6356 from AndersonTorres/lolcode

LOLcode(version 0.10.5): New Package
parents 765c8f4d 71299b91
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ stdenv, fetchurl, pkgconfig, doxygen, cmake }:

with stdenv.lib;
stdenv.mkDerivation rec {

  name = "lolcode-${version}";
  version = "0.10.5";

  src = fetchurl {
    url = "https://github.com/justinmeza/lci/archive/v${version}.tar.gz";
    sha256 = "0g6k1jxnvgjxyidrvgk8pdb8y8mai456j9zpzmvhm6fr22c4skrc";
  };

  buildInputs = [ pkgconfig doxygen cmake ];

  # 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 ];
  };

}
+2 −0
Original line number Diff line number Diff line
@@ -4275,6 +4275,8 @@ let

  kona = callPackage ../development/interpreters/kona {};

  lolcode = callPackage ../development/interpreters/lolcode { };

  love = callPackage ../development/interpreters/love {lua=lua5_1;};
  love_luajit = callPackage ../development/interpreters/love {lua=luajit;};
  love_0_9 = callPackage ../development/interpreters/love/0.9.nix { };