tang: init at 7
This commit is contained in:
parent
37f35dc779
commit
71cc7796e1
32
pkgs/servers/tang/default.nix
Normal file
32
pkgs/servers/tang/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -15664,6 +15664,10 @@ in
|
||||||
libmemcached = null; # Detection is broken upstream
|
libmemcached = null; # Detection is broken upstream
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tang = callPackage ../servers/tang {
|
||||||
|
asciidoc = asciidoc-full;
|
||||||
|
};
|
||||||
|
|
||||||
timescaledb-parallel-copy = callPackage ../development/tools/database/timescaledb-parallel-copy { };
|
timescaledb-parallel-copy = callPackage ../development/tools/database/timescaledb-parallel-copy { };
|
||||||
|
|
||||||
timescaledb-tune = callPackage ../development/tools/database/timescaledb-tune { };
|
timescaledb-tune = callPackage ../development/tools/database/timescaledb-tune { };
|
||||||
|
|
Loading…
Reference in New Issue
Block a user