eris-go: init at 20230114

This commit is contained in:
Emery Hemingway 2023-01-11 17:07:53 -06:00
parent fcc8ff7cc2
commit 679af8b572
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitea }:
buildGoModule rec {
pname = "eris-go";
version = "20230114";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "eris";
repo = pname;
rev = version;
hash = "sha256-cJvSIeS9fKUJP5p7ZTH7Wi+UcBXeCS32Twhv6jBT+9Q=";
};
vendorHash = "sha256-DDV7LUnGnf24qQ2I9I4MDUx87s1+yDhisVz/Jw4XU6k=";
postInstall = "ln -s $out/bin/eris-get $out/bin/eris-put";
# eris-get is a multicall binary
meta = src.meta // {
description = "Implementation of ERIS for Go";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ ehmry ];
mainProgram = "eris-get";
};
}

View File

@ -6911,6 +6911,8 @@ with pkgs;
endlessh-go = callPackage ../servers/endlessh-go { };
eris-go = callPackage ../servers/eris-go { };
ericw-tools = callPackage ../applications/misc/ericw-tools { stdenv = gcc10StdenvCompat; };
cryfs = callPackage ../tools/filesystems/cryfs { };