alistral: init at 0.5.2

This commit is contained in:
jopejoe1
2025-03-15 11:41:14 +01:00
parent a99d0352de
commit 7905d342d4
+55
View File
@@ -0,0 +1,55 @@
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
nix-update-script,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "alistral";
version = "0.5.2";
src = fetchFromGitHub {
owner = "RustyNova016";
repo = "Alistral";
tag = "v${finalAttrs.version}";
hash = "sha256-bt0WCmnk/DAEuQeEvBe5Vdk/AxpfRAafPiEJ7v8HK8Y=";
};
# remove if updating to rust 1.85
postPatch = ''
substituteInPlace Cargo.toml \
--replace-fail "[package]" ''$'cargo-features = ["edition2024"]\n[package]'\
--replace-fail 'rust-version = "1.85.0"' ""
'';
useFetchCargoVendor = true;
cargoHash = "sha256-BxJmoJbnGfsA+YCvzUvgnkoHl/ClrwHoE3NjlctjCxA=";
env.RUSTC_BOOTSTRAP = 1;
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
# Wants to create config file where it s not allowed
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://rustynova016.github.io/Alistral/";
changelog = "https://github.com/RustyNova016/Alistral/blob/${finalAttrs.src.tag}/CHANGELOG.md";
description = "Power tools for Listenbrainz";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jopejoe1 ];
mainProgram = "alistral";
};
})