1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/tools/ejson/default.nix
Josh Heinrichs 6bd683fc18
ejson: 1.3.3 -> 1.5.2
In 1.5.2, man pages were removed[1], so Ruby isn't required anymore.

[1]: https://github.com/Shopify/ejson/pull/152
2024-09-27 16:14:50 -06:00

33 lines
655 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "ejson";
version = "1.5.2";
src = fetchFromGitHub {
owner = "Shopify";
repo = "ejson";
rev = "v${version}";
sha256 = "sha256-Pv0eoFf/E+PE/C+0wsSQxhVTlymOMAYk5UVQP2udpnA=";
};
vendorHash = "sha256-N2vcj3STkaZO2eRr8VztZTWOBUTI+wOri0HYDJ1KiN8=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Small library to manage encrypted secrets using asymmetric encryption";
mainProgram = "ejson";
license = licenses.mit;
homepage = "https://github.com/Shopify/ejson";
maintainers = [ maintainers.manveru ];
};
}