Set meta on derivation

This commit is contained in:
adisbladis 2022-06-13 23:33:08 +08:00
parent 363017e3f3
commit 7224069881

View file

@ -29,4 +29,10 @@ buildGoApplication {
wrapProgram $out/bin/gomod2nix --prefix PATH : ${lib.makeBinPath [ go ]} 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 ];
};
} }