all repos — searchix @ 29badc67e9722ac382d86382deabff0180280080

Search engine for NixOS, nix-darwin, home-manager and NUR users

fix: Add meta info for package to fix nix run usage

Kaya
commit

29badc67e9722ac382d86382deabff0180280080

parent

6b71d16fef2a9030d62f7e6368c5f1ce69032898

1 file changed, 8 insertions(+), 0 deletions(-)

changed files
M nix/package.nixnix/package.nix
@@ -12,6 +12,7 @@ }
), buildGoApplication ? pkgs.buildGoApplication, css, + lib, }: let version = "0.4.3";
@@ -52,4 +53,11 @@
modules = ../gomod2nix.toml; doCheck = false; + + meta = with lib; { + description = "Search tool for options and packages in the NixOS ecosystem"; + mainProgram = "searchix-web"; + license = licenses.mit; + platforms = platforms.all; + }; }