forked from authentricity/authentricity
16 lines
363 B
Nix
16 lines
363 B
Nix
{ lib, buildGoModule }:
|
|
buildGoModule rec {
|
|
pname = "authentricity";
|
|
version = "0.0.1";
|
|
|
|
src = ./.;
|
|
|
|
vendorSha256 = "sha256-fskmRb9zXLGkL0sJ4P1/sNjzZkUZhAguOCSN1etQ2tU=";
|
|
|
|
meta = with lib; {
|
|
description = "Simple distributed authentication system";
|
|
homepage = "https://git.shinra.systems/erin/authentricity/";
|
|
license = licenses.isc;
|
|
};
|
|
}
|