mirror of
https://github.com/danbulant/dotfiles
synced 2026-09-17 13:23:51 +00:00
28 lines
615 B
Nix
28 lines
615 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tuwunel-admin";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "knadh";
|
|
repo = "tuwunel-admin";
|
|
tag = "v${version}";
|
|
hash = "sha256-60yPa+B6PYzOoCjQyeqdy5vdF5BCFNVv2CTofPi6lRQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-TpC+5/Ox04aQpUSssMnaVadq7+sroW9mJViVFGNsVIk=";
|
|
|
|
env.VERSION = "v${version}";
|
|
|
|
meta = {
|
|
description = "Web admin UI for the tuwunel Matrix server";
|
|
homepage = "https://github.com/knadh/tuwunel-admin";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "tuwunel-admin";
|
|
};
|
|
}
|