fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 result,
6 trie,
7}:
8
9buildDunePackage rec {
10 pname = "mew";
11 version = "0.1.0";
12
13 useDune2 = true;
14
15 src = fetchFromGitHub {
16 owner = "kandu";
17 repo = pname;
18 rev = version;
19 sha256 = "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2";
20 };
21
22 propagatedBuildInputs = [
23 result
24 trie
25 ];
26
27 meta = {
28 inherit (src.meta) homepage;
29 license = lib.licenses.mit;
30 description = "Modal Editing Witch";
31 maintainers = [ lib.maintainers.vbgl ];
32 };
33
34}