Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
931 B
Nix
47 lines
931 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
doxygen,
|
|
cmake,
|
|
readline,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "lolcode";
|
|
version = "0.11.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "justinmeza";
|
|
repo = "lci";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-VMBW3/sw+1kI6iuOckSPU1TIeY6QORcSfFLFkRYw3Gs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
doxygen
|
|
];
|
|
buildInputs = [ readline ];
|
|
|
|
# Maybe it clashes with lci scientific logic software package...
|
|
postInstall = "mv $out/bin/lci $out/bin/lolcode-lci";
|
|
|
|
meta = with lib; {
|
|
homepage = "http://lolcode.org";
|
|
description = "Esoteric programming language";
|
|
longDescription = ''
|
|
LOLCODE is a funny esoteric programming language, a bit Pascal-like,
|
|
whose keywords are LOLspeak.
|
|
'';
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
mainProgram = "lolcode-lci";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
|
|
}
|