ocamlPackages.mew: init at 0.1.0
A general modal editing engine generator
This commit is contained in:
parent
a2dfc892da
commit
343eb4dc37
2 changed files with 29 additions and 0 deletions
27
pkgs/development/ocaml-modules/mew/default.nix
Normal file
27
pkgs/development/ocaml-modules/mew/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, buildDunePackage, fetchFromGitHub
|
||||
, result, trie
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "mew";
|
||||
version = "0.1.0";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kandu";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ result trie ];
|
||||
|
||||
meta = {
|
||||
inherit (src.meta) homepage;
|
||||
license = lib.licenses.mit;
|
||||
description = "Modal Editing Witch";
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
|
||||
}
|
|
@ -569,6 +569,8 @@ let
|
|||
inherit (pkgs) gnuplot;
|
||||
};
|
||||
|
||||
mew = callPackage ../development/ocaml-modules/mew { };
|
||||
|
||||
mezzo = callPackage ../development/compilers/mezzo { };
|
||||
|
||||
minisat = callPackage ../development/ocaml-modules/minisat { };
|
||||
|
|
Loading…
Reference in a new issue