fix: Add meta info for package to fix nix run usage
1 file changed, 8 insertions(+), 0 deletions(-)
changed files
M nix/package.nix → nix/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; + }; }