python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / admin / ssmsh / default.nix
blobe42e2e06de665ec4fda67e7db7958dfcac1461c3
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "ssmsh";
5   version = "1.4.7";
7   src = fetchFromGitHub {
8     owner = "bwhaley";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-juyTCtcuFIlKyLxDrK5tRRzCMwoSXG4EUA32E/Z4y5c=";
12   };
14   vendorSha256 = "sha256-dqUMwnHRsR8n4bHEKoePyuqr8sE4NWPpuYo5SwOw0Rw=";
16   doCheck = true;
18   ldflags = [ "-w" "-s" "-X main.Version=${version}" ];
20   meta = with lib; {
21     homepage = "https://github.com/bwhaley/ssmsh";
22     description = "An interactive shell for AWS Parameter Store";
23     license = licenses.mit;
24     maintainers = with maintainers; [ dbirks ];
25   };