3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #238540 from jfroche/update-tang

tang: 13 -> 14
This commit is contained in:
Franz Pletz 2023-06-20 00:00:47 +02:00 committed by GitHub
commit 92ba288e80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,17 +9,21 @@
, systemd
, meson
, ninja
, makeWrapper
, testers
, tang
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "tang";
version = "13";
version = "14";
src = fetchFromGitHub {
owner = "latchset";
repo = "tang";
rev = "refs/tags/v${version}";
hash = "sha256-SOdgMUWavTaDUiVvpEyE9ac+9aDmZs74n7ObugksBcc=";
hash = "sha256-QKURKb2g71pZvuZlJk3Rc26H3oU0WSkjgQtJQLrYGbw=";
};
nativeBuildInputs = [
@ -27,6 +31,7 @@ stdenv.mkDerivation rec {
meson
ninja
pkg-config
makeWrapper
];
buildInputs = [
@ -41,6 +46,21 @@ stdenv.mkDerivation rec {
"man"
];
postFixup = ''
wrapProgram $out/bin/tang-show-keys --prefix PATH ":" ${lib.makeBinPath [ jose ]}
wrapProgram $out/libexec/tangd-keygen --prefix PATH ":" ${lib.makeBinPath [ jose ]}
wrapProgram $out/libexec/tangd-rotate-keys --prefix PATH ":" ${lib.makeBinPath [ jose ]}
'';
passthru = {
tests.version = testers.testVersion {
package = tang;
command = "${tang}/libexec/tangd --version";
version = "tangd ${version}";
};
updateScript = gitUpdater { };
};
meta = {
description = "Server for binding data to network presence";
homepage = "https://github.com/latchset/tang";