mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
tang: 7 -> 12
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
This commit is contained in:
parent
36c9dc57b5
commit
3ddfa29f51
|
@ -1,31 +1,50 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, asciidoc
|
||||
, jansson, jose, http-parser, systemd
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, asciidoc
|
||||
, jansson
|
||||
, jose
|
||||
, http-parser
|
||||
, systemd
|
||||
, meson
|
||||
, ninja
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tang";
|
||||
version = "7";
|
||||
version = "12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "latchset";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0y5w1jrq5djh9gpy2r98ja7676nfxss17s1dk7jvgblsijx9qsd7";
|
||||
repo = "tang";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-wfZFOJrVzjtysh0VKdw5O+DJybYkV9bYJNnaku6YctE=";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--localstatedir=/var"
|
||||
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
||||
nativeBuildInputs = [
|
||||
asciidoc
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config asciidoc ];
|
||||
buildInputs = [ jansson jose http-parser systemd ];
|
||||
buildInputs = [
|
||||
jansson
|
||||
jose
|
||||
http-parser
|
||||
systemd
|
||||
];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
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;
|
||||
};
|
||||
|
|
|
@ -43,18 +43,18 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
asciidoc
|
||||
makeWrapper
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
asciidoc
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
jansson
|
||||
jose
|
||||
cryptsetup
|
||||
curl
|
||||
jansson
|
||||
jose
|
||||
libpwquality
|
||||
luksmeta
|
||||
tpm2-tools
|
||||
|
|
Loading…
Reference in a new issue