anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / ape / clex.nix
bloba98695dab68258c48020c81847d0b717174caade
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "attempto-clex";
5   version = "5133afe";
7   src = fetchFromGitHub {
8      owner = "Attempto";
9      repo = "Clex";
10      rev = version;
11      sha256 = "0p9s64g1jic213bwm6347jqckszgnni9szrrz31qjgaf32kf7nkp";
12   };
14   installPhase = ''
15     mkdir -p $out
16     cp clex_lexicon.pl $out
17   '';
19   meta = with lib; {
20     description = "Large lexicon for APE (~100,000 entries)";
21     license = licenses.gpl3;
22     platforms = platforms.unix;
23     maintainers = with maintainers; [ yrashk ];
24   };