tang: init at 7

This commit is contained in:
Franz Pletz 2020-02-09 18:40:03 +01:00
parent 37f35dc779
commit 71cc7796e1
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ 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;
};
}

View file

@ -15664,6 +15664,10 @@ in
libmemcached = null; # Detection is broken upstream
};
tang = callPackage ../servers/tang {
asciidoc = asciidoc-full;
};
timescaledb-parallel-copy = callPackage ../development/tools/database/timescaledb-parallel-copy { };
timescaledb-tune = callPackage ../development/tools/database/timescaledb-tune { };