add source to nvfetch of tree-sitter lib
This commit is contained in:
parent
922a964a7d
commit
7c38ed1723
7 changed files with 76 additions and 48 deletions
|
|
@ -5,21 +5,23 @@
|
|||
}:
|
||||
let
|
||||
srcs = pkgs.callPackage ./_sources/generated.nix { };
|
||||
callPackage =
|
||||
fn: args: pkgs.lib.callPackageWith (pkgs // { inherit inputs srcs callPackage; }) fn args;
|
||||
in
|
||||
{
|
||||
pinentry-selector = pkgs.callPackage ./pinentry-selector.nix { };
|
||||
helix = pkgs.callPackage ./helix { inherit inputs; };
|
||||
juicity = pkgs.callPackage ./juicity.nix { inherit srcs; };
|
||||
pinentry-selector = callPackage ./pinentry-selector.nix { };
|
||||
helix = callPackage ./helix { };
|
||||
juicity = callPackage ./juicity.nix { };
|
||||
}
|
||||
// (
|
||||
let
|
||||
firefox-addons = (pkgs.callPackage "${inputs.nur-rycee}/pkgs/firefox-addons/default.nix" { });
|
||||
firefox-addons = (callPackage "${inputs.nur-rycee}/pkgs/firefox-addons/default.nix" { });
|
||||
in
|
||||
pkgs.lib.genAttrs [ "immersive-translate" "tridactyl" ] (name: firefox-addons."${name}")
|
||||
)
|
||||
// (
|
||||
let
|
||||
nur-xddxdd = (pkgs.callPackage "${inputs.nur-xddxdd}/default.nix" { });
|
||||
nur-xddxdd = (callPackage "${inputs.nur-xddxdd}/default.nix" { });
|
||||
in
|
||||
pkgs.lib.genAttrs [ "rime-zhwiki" "rime-moegirl" ] (name: nur-xddxdd."${name}")
|
||||
// {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue