authentricity/default.nix

16 lines
363 B
Nix
Raw Permalink Normal View History

2022-07-14 20:48:55 +01:00
{ lib, buildGoModule }:
buildGoModule rec {
pname = "authentricity";
version = "0.0.1";
src = ./.;
vendorSha256 = "sha256-yJHwZLNlZHB9Jo+Xo9c1wy00faiY4oURyYbhNx3yMK8=";
2022-07-14 20:48:55 +01:00
meta = with lib; {
description = "Simple distributed authentication system";
homepage = "https://git.shinra.systems/erin/authentricity/";
license = licenses.isc;
};
}