tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
luaPackages.nui-nvim: init at 0.2.0
Marc Jakobi
2 years ago
d78d7cbc
ec41f69f
+31
2 changed files
expand all
collapse all
unified
split
maintainers
scripts
luarocks-packages.csv
pkgs
development
lua-modules
generated-packages.nix
+1
maintainers/scripts/luarocks-packages.csv
···
93
93
middleclass,,,,,,
94
94
mpack,,,,,,
95
95
moonscript,https://github.com/leafo/moonscript.git,dev-1,,,,arobyn
96
96
+
nui-nvim,,,,,,mrcjkb
96
97
nvim-client,https://github.com/neovim/lua-client.git,,,,,
97
98
nvim-cmp,https://github.com/hrsh7th/nvim-cmp,,,,,
98
99
penlight,https://github.com/lunarmodules/Penlight.git,,,,,alerque
+30
pkgs/development/lua-modules/generated-packages.nix
···
2603
2603
};
2604
2604
}) {};
2605
2605
2606
2606
+
nui-nvim = callPackage( { fetchgit, buildLuarocksPackage }:
2607
2607
+
buildLuarocksPackage {
2608
2608
+
pname = "nui.nvim";
2609
2609
+
version = "0.2.0-1";
2610
2610
+
knownRockspec = (fetchurl {
2611
2611
+
url = "mirror://luarocks/nui.nvim-0.2.0-1.rockspec";
2612
2612
+
sha256 = "0v2z6lgl6hrzcjlzhis8nrkdkh9kvx8zg3q5svi5gyklg7vmcbc2";
2613
2613
+
}).outPath;
2614
2614
+
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
2615
2615
+
"url": "https://github.com/MunifTanjim/nui.nvim.git",
2616
2616
+
"rev": "9e3916e784660f55f47daa6f26053ad044db5d6a",
2617
2617
+
"date": "2023-07-20T10:45:09+06:00",
2618
2618
+
"path": "/nix/store/8zdhjgipjjhi9b1y40r2yk5np4lp39as-nui.nvim",
2619
2619
+
"sha256": "14a73dwl56kah9h36b40ir6iylvfs261ysz17qvi9vhp63vjq9cx",
2620
2620
+
"fetchLFS": false,
2621
2621
+
"fetchSubmodules": true,
2622
2622
+
"deepClone": false,
2623
2623
+
"leaveDotGit": false
2624
2624
+
}
2625
2625
+
'') ["date" "path"]) ;
2626
2626
+
2627
2627
+
2628
2628
+
meta = {
2629
2629
+
homepage = "https://github.com/MunifTanjim/nui.nvim";
2630
2630
+
description = "UI Component Library for Neovim.";
2631
2631
+
maintainers = with lib.maintainers; [ mrcjkb ];
2632
2632
+
license.fullName = "MIT";
2633
2633
+
};
2634
2634
+
}) {};
2635
2635
+
2606
2636
nvim-client = callPackage({ coxpcall, fetchurl, mpack, lua, luaOlder, luv, buildLuarocksPackage }:
2607
2637
buildLuarocksPackage {
2608
2638
pname = "nvim-client";