authentricity/default.nix

16 lines
363 B
Nix

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