xin/pkgs/gosignify.nix

29 lines
629 B
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, buildGoModule
, fetchFromGitHub
, ...
2023-07-11 09:12:50 -06:00
}:
2022-10-17 09:59:32 -06:00
with lib;
2023-09-12 08:44:05 -06:00
buildGoModule rec {
pname = "gosignify";
version = "0.0.0-20210702013543-c91e79d30e91";
2022-10-17 09:59:32 -06:00
2023-09-12 08:44:05 -06:00
src = fetchFromGitHub {
owner = "frankbraun";
repo = pname;
rev = "c91e79d30e9115216a827222e07f44e9c4339ed2";
sha256 = "sha256-Ynmx6NUUQ5WEYFowuW/ELjV2ESOHqoOTVqdZ6CWt6LQ=";
};
2022-10-17 09:59:32 -06:00
2023-09-12 08:44:05 -06:00
proxyVendor = false;
2022-10-17 09:59:32 -06:00
2023-11-15 10:23:30 -07:00
vendorHash = null;
2022-10-17 19:28:09 -06:00
2023-09-12 08:44:05 -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 ];
};
}