nixpkgs/pkgs/tools/misc/trillian/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
750 B
Nix
Raw Normal View History

{ lib
2021-01-12 13:18:16 +01:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
2021-01-12 13:18:16 +01:00
pname = "trillian";
2022-08-19 21:28:39 +02:00
version = "1.5.0";
vendorSha256 = "sha256-235uQK4E/GLl5XLBd6lkTIgWIjT9MZZGnyfZbOoTFo0=";
2021-01-12 13:18:16 +01:00
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
2022-08-19 21:28:39 +02:00
sha256 = "sha256-XZHVGuIN+5mFbaxOprhdHlpgz2NE2NsJxGWJciDMUqI=";
2021-01-12 13:18:16 +01:00
};
subPackages = [
"cmd/trillian_log_server"
"cmd/trillian_log_signer"
"cmd/createtree"
"cmd/deletetree"
"cmd/updatetree"
];
meta = with lib; {
2021-01-12 13:18:16 +01:00
homepage = "https://github.com/google/trillian";
description = "A transparent, highly scalable and cryptographically verifiable data store.";
license = [ licenses.asl20 ];
maintainers = [ maintainers.adisbladis ];
2021-01-12 13:18:16 +01:00
};
}