chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / lo / lolcode / package.nix
blob09df8b04d0cd9d93e3eb485e1af6f60457a85a58
1 { lib, stdenv, fetchFromGitHub, pkg-config, doxygen, cmake, readline }:
3 stdenv.mkDerivation rec {
5   pname = "lolcode";
6   version = "0.11.2";
8   src = fetchFromGitHub {
9     owner = "justinmeza";
10     repo = "lci";
11     rev = "v${version}";
12     sha256 = "sha256-VMBW3/sw+1kI6iuOckSPU1TIeY6QORcSfFLFkRYw3Gs=";
13   };
15   nativeBuildInputs = [ pkg-config cmake doxygen ];
16   buildInputs = [ readline ];
18   # Maybe it clashes with lci scientific logic software package...
19   postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
21   meta = with lib; {
22     homepage = "http://lolcode.org";
23     description = "Esoteric programming language";
24     longDescription = ''
25       LOLCODE is a funny esoteric  programming language, a bit Pascal-like,
26       whose keywords are LOLspeak.
27     '';
28     license = licenses.gpl3;
29     maintainers = [ maintainers.AndersonTorres ];
30     mainProgram = "lolcode-lci";
31     platforms = lib.platforms.unix;
32   };