Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "chopchop"; 8 version = "1.0.0"; 9 10 src = fetchFromGitHub { 11 owner = "michelin"; 12 repo = "ChopChop"; 13 rev = "v${version}"; 14 sha256 = "qSBQdcS6d0tctSHRbkY4T7s6Zj7xI2abaPUvNKh1M2E="; 15 }; 16 17 vendorSha256 = "UxWARWOFp8AYKEdiJwRZNwFrphgMTJSZjnvktTNOsgU="; 18 19 meta = with lib; { 20 description = "CLI to search for sensitive services/files/folders"; 21 homepage = "https://github.com/michelin/ChopChop"; 22 license = with licenses; [ asl20 ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}