treewide: remove stdenv where not needed

This commit is contained in:
Pavol Rusnak
2021-01-25 18:31:47 +01:00
parent e06e847595
commit a6ce00c50c
2779 changed files with 2844 additions and 2834 deletions
+6 -10
View File
@@ -1,15 +1,11 @@
{ stdenv
, lib
{ lib
, buildGoModule
, fetchFromGitHub
}:
let
buildGoModule rec {
pname = "trillian";
version = "1.3.11";
in
buildGoModule {
inherit pname version;
vendorSha256 = "0zxp1gjzcc3z6vkpc2bchbs1shwm1b28ks0jh4gf6zxpp4361j4l";
src = fetchFromGitHub {
@@ -34,10 +30,10 @@ buildGoModule {
"cmd/updatetree"
];
meta = {
meta = with lib; {
homepage = "https://github.com/google/trillian";
description = "A transparent, highly scalable and cryptographically verifiable data store.";
license = [ lib.licenses.asl20 ];
maintainers = [ lib.maintainers.adisbladis ];
license = [ licenses.asl20 ];
maintainers = [ maintainers.adisbladis ];
};
}