fix: Add meta info for package to fix nix run usage
2 files changed, 9 insertions(+), 0 deletions(-)
changed files
M .gitignore → .gitignore
@@ -24,3 +24,4 @@ /frontend/static/base.css /frontend/error.html /data/ /config.toml +/.direnv/
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; + }; }