lol

Merge pull request #198766 from fabaff/legitify

legitify: init at 0.1.5

authored by

Fabian Affolter and committed by
GitHub
00419302 d14595d3

+33
+31
pkgs/development/tools/legitify/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "legitify"; 8 + version = "0.1.5"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "Legit-Labs"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-Sr6P5S5+DqbP0ihCj97l84739/NRAlYJLnXp4B5gHNE="; 15 + }; 16 + 17 + vendorHash = "sha256-EJMXzWrOXFl7JFYBp/XAcHLcNyWCKbOBAyo/Yf2mh5s="; 18 + 19 + ldflags = [ 20 + "-w" 21 + "-s" 22 + "-X github.com/Legit-Labs/legitify/internal/version.Version=${version}" 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "Tool to detect and remediate misconfigurations and security risks of GitHub assets"; 27 + homepage = "https://github.com/Legit-Labs/legitify"; 28 + license = licenses.asl20; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 29854 29854 29855 29855 legit = callPackage ../applications/version-management/git-and-tools/legit { }; 29856 29856 29857 + legitify = callPackage ../development/tools/legitify { }; 29858 + 29857 29859 lens = callPackage ../applications/networking/cluster/lens { }; 29858 29860 29859 29861 leo-editor = libsForQt5.callPackage ../applications/editors/leo-editor { };