1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/servers/hockeypuck/server.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
527 B
Nix
Raw Normal View History

2021-07-18 03:51:49 -04:00
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2021-07-14 14:28:10 -04:00
let
sources = (import ./sources.nix) { inherit fetchFromGitHub; };
in
buildGoModule {
inherit (sources) pname version src;
modRoot = "src/hockeypuck/";
vendorSha256 = null;
doCheck = false; # Uses networking for tests
2021-07-18 03:51:49 -04:00
passthru.tests = nixosTests.hockeypuck;
2021-07-14 14:28:10 -04:00
meta = with lib; {
description = "OpenPGP Key Server";
homepage = "https://github.com/hockeypuck/hockeypuck";
license = licenses.agpl3Plus;
maintainers = [ maintainers.etu ];
};
}