github.com/w3security/vervet/v5@v5.3.1-0.20230618081846-5bd9b5d799dc/default.nix (about)

     1  { buildGoModule, lib, lastMod }:
     2  buildGoModule rec {
     3    pname = "vervet";
     4    version = builtins.substring 0 8 lastMod;
     5    src = ./.;
     6  
     7    vendorSha256 = "sha256-uDM4svFIGn3kS0ygA6aDCDI8OVCrxzHmLkc+6XWdKB4=";
     8  
     9    meta = with lib; {
    10      description = "API resource versioning tool";
    11      homepage = "https://github.com/w3security/vervet";
    12      platforms = platforms.linux ++ platforms.darwin;
    13    };
    14    subPackages = [ "cmd/vervet" ];
    15  }