about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mew/default.nix
blob: 819bb020050c8c770d128ceeaa50342845de54e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 ];
  };

}