depot/third_party/nixpkgs/pkgs/servers/tang/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

32 lines
838 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, asciidoc
, jansson, jose, http-parser, systemd
}:
stdenv.mkDerivation rec {
pname = "tang";
version = "7";
src = fetchFromGitHub {
owner = "latchset";
repo = pname;
rev = "v${version}";
sha256 = "0y5w1jrq5djh9gpy2r98ja7676nfxss17s1dk7jvgblsijx9qsd7";
};
configureFlags = [
"--localstatedir=/var"
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
];
nativeBuildInputs = [ autoreconfHook pkgconfig asciidoc ];
buildInputs = [ jansson jose http-parser systemd ];
outputs = [ "out" "man" ];
meta = {
description = "Server for binding data to network presence.";
homepage = "https://github.com/latchset/tang";
maintainers = with lib.maintainers; [ fpletz ];
license = lib.licenses.gpl3Plus;
};
}