nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 mew,
6 react,
7}:
8
9buildDunePackage (finalAttrs: {
10 pname = "mew_vi";
11 version = "0.5.0";
12
13 src = fetchFromGitHub {
14 owner = "kandu";
15 repo = "mew_vi";
16 tag = finalAttrs.version;
17 hash = "sha256-KI8yZGCYvKN59krpxBLBVNLZKoe1cGCoVr9MIZBbMFI=";
18 };
19
20 propagatedBuildInputs = [
21 mew
22 react
23 ];
24
25 meta = {
26 homepage = "https://github.com/kandu/mew_vi";
27 license = lib.licenses.mit;
28 description = "Modal Editing Witch, VI interpreter";
29 maintainers = [ lib.maintainers.vbgl ];
30 };
31
32})