xin/pkgs/gosignify.nix

26 lines
629 B
Nix
Raw Normal View History

2022-10-18 22:18:48 -06:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
2022-10-17 09:59:32 -06:00
with lib;
2022-10-17 19:28:09 -06:00
buildGoModule rec {
2022-10-17 09:59:32 -06:00
pname = "gosignify";
version = "0.0.0-20210702013543-c91e79d30e91";
src = fetchFromGitHub {
owner = "frankbraun";
repo = pname;
rev = "c91e79d30e9115216a827222e07f44e9c4339ed2";
sha256 = "sha256-Ynmx6NUUQ5WEYFowuW/ELjV2ESOHqoOTVqdZ6CWt6LQ=";
};
proxyVendor = false;
2022-10-17 19:28:09 -06:00
vendorSha256 = null;
2022-10-17 09:59:32 -06:00
meta = {
description = "gosignify is a Go reimplementation of OpenBSD's signify";
homepage = "https://github.com/frankbraun/gosignify";
license = licenses.unlicense;
maintainers = with maintainers; [ qbit ];
};
}