gr-base/nix/deno/readScroll.nix

12 lines
243 B
Nix
Raw Normal View History

2025-08-03 14:09:30 +07:00
{ self }:
{ pkgs, system, scrollsDir, subDir }:
let
scroll = import "${scrollsDir}/${subDir}/scroll.nix";
in
{
env = self.buildDenoCache {
inherit pkgs system scrollsDir subDir;
};
meta = builtins.removeAttrs scroll [ "build" ];
}