mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
6bd683fc18
In 1.5.2, man pages were removed[1], so Ruby isn't required anymore. [1]: https://github.com/Shopify/ejson/pull/152
33 lines
655 B
Nix
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 ];
|
|
};
|
|
}
|