From 72240698812f9a77367392480edddc72056f422b Mon Sep 17 00:00:00 2001 From: adisbladis Date: Mon, 13 Jun 2022 23:33:08 +0800 Subject: [PATCH] Set meta on derivation --- default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/default.nix b/default.nix index 636bca8..6d4a0bf 100644 --- a/default.nix +++ b/default.nix @@ -29,4 +29,10 @@ buildGoApplication { wrapProgram $out/bin/gomod2nix --prefix PATH : ${lib.makeBinPath [ go ]} ''; + meta = { + description = "Convert applications using Go modules -> Nix"; + homepage = "https://github.com/tweag/gomod2nix"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.adisbladis ]; + }; }