mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
3ddfa29f51
Changelogs: https://github.com/latchset/tang/releases/tag/v12 https://github.com/latchset/tang/releases/tag/v11 https://github.com/latchset/tang/releases/tag/v10 https://github.com/latchset/tang/releases/tag/v9 https://github.com/latchset/tang/releases/tag/v8
52 lines
848 B
Nix
52 lines
848 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, asciidoc
|
|
, jansson
|
|
, jose
|
|
, http-parser
|
|
, systemd
|
|
, meson
|
|
, ninja
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tang";
|
|
version = "12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "latchset";
|
|
repo = "tang";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wfZFOJrVzjtysh0VKdw5O+DJybYkV9bYJNnaku6YctE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
jansson
|
|
jose
|
|
http-parser
|
|
systemd
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
meta = {
|
|
description = "Server for binding data to network presence";
|
|
homepage = "https://github.com/latchset/tang";
|
|
changelog = "https://github.com/latchset/tang/releases/tag/v${version}";
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
license = lib.licenses.gpl3Plus;
|
|
};
|
|
}
|