Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchFromGitHub
2, result, trie
3}:
4
5buildDunePackage rec {
6 pname = "mew";
7 version = "0.1.0";
8
9 useDune2 = true;
10
11 src = fetchFromGitHub {
12 owner = "kandu";
13 repo = pname;
14 rev = version;
15 sha256 = "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2";
16 };
17
18 propagatedBuildInputs = [ result trie ];
19
20 meta = {
21 inherit (src.meta) homepage;
22 license = lib.licenses.mit;
23 description = "Modal Editing Witch";
24 maintainers = [ lib.maintainers.vbgl ];
25 };
26
27}