summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-12-29 16:12:47 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-05 18:23:20 +0100
commit343eb4dc37df38176becee8314ff9bd21e6378a9 (patch)
tree3777423f4e5b6b05e4660a8d23d34a0727595d05 /pkgs/development/ocaml-modules
parenta2dfc892daf3973d4ae0ff004e758a1e43058dae (diff)
ocamlPackages.mew: init at 0.1.0
A general modal editing engine generator
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/mew/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/mew/default.nix b/pkgs/development/ocaml-modules/mew/default.nix
new file mode 100644
index 000000000000..819bb020050c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mew/default.nix
@@ -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 ];
+ };
+
+}