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
30 lines
554 B
Nix
30 lines
554 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "attempto-clex";
|
|
version = "5133afe";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Attempto";
|
|
repo = "Clex";
|
|
rev = version;
|
|
sha256 = "0p9s64g1jic213bwm6347jqckszgnni9szrrz31qjgaf32kf7nkp";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp clex_lexicon.pl $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Large lexicon for APE (~100,000 entries)";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ yrashk ];
|
|
};
|
|
}
|