python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / goss / default.nix
blob79d3cf377d73a4a4d32e119ef1a2293440121305
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "goss";
5   version = "0.3.18";
7   src = fetchFromGitHub {
8     owner = "aelsabbahy";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "01ssc7rnnwpyhjv96qy8drsskghbfpyxpsahk8s62lh8pxygynhv";
12   };
14   vendorSha256 = "sha256-zlQMVn4w6syYmntxpeiIc1UTbFrIJzOMg0RVDCICTM8=";
16   CGO_ENABLED = 0;
17   ldflags = [
18     "-s" "-w" "-X main.version=v${version}"
19   ];
21   meta = with lib; {
22     homepage = "https://github.com/aelsabbahy/goss/";
23     changelog = "https://github.com/aelsabbahy/goss/releases/tag/v${version}";
24     description = "Quick and easy server validation";
25     longDescription = ''
26       Goss is a YAML based serverspec alternative tool for validating a server’s configuration.
27       It eases the process of writing tests by allowing the user to generate tests from the current system state.
28       Once the test suite is written they can be executed, waited-on, or served as a health endpoint.
29     '';
30     license = licenses.asl20;
31     platforms = platforms.linux;
32     maintainers = with maintainers; [ hyzual jk ];
33   };