managarr: init at v0.4.2

Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
This commit is contained in:
Gereon Schomber
2024-12-25 09:45:42 +05:30
committed by John Titor
parent 5c64b8de06
commit 7567d65ca9
+30
View File
@@ -0,0 +1,30 @@
{
lib,
fetchFromGitHub,
rustPlatform,
perl,
}:
rustPlatform.buildRustPackage rec {
pname = "managarr";
version = "0.4.2";
src = fetchFromGitHub {
owner = "Dark-Alex-17";
repo = "managarr";
tag = "v${version}";
hash = "sha256-OxGFubtMsGnR8cWDKkeAgryY095uydA3LzE5SS0dspQ=";
};
cargoHash = "sha256-bws4LwpJGfq0hCA2Fq51uCMvr0arbayppq1jvDrILZI=";
nativeBuildInputs = [ perl ];
meta = {
description = "TUI and CLI to manage your Servarrs";
homepage = "https://github.com/Dark-Alex-17/managarr";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.IncredibleLaser ];
mainProgram = "managarr";
};
}