bleur: init at 0.0.7

This commit is contained in:
wolfram444
2026-05-12 18:57:10 +05:00
parent fac86c55a0
commit 5dfaead13c
+40
View File
@@ -0,0 +1,40 @@
{
lib,
pkg-config,
openssl,
rustPlatform,
fetchgit,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "bleur";
version = "0.0.7";
__structuredAttrs = true;
src = fetchgit {
url = "https://git.oss.uzinfocom.uz/bleur/bleur.git";
rev = "v${finalAttrs.version}";
hash = "sha256-bFpOvnC2MILr3b+KdVOAvDGmEZM8LDlwGd04csk2l18=";
};
cargoHash = "sha256-edeegm0QeXqj0E46+BHcmJMU1Ewn6p9hi3WArDtyVnI=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
strictDeps = true;
meta = {
description = "Template manager & buddy for bleur templates by Orzklv";
platforms = with lib.platforms; linux ++ darwin;
mainProgram = "bleur";
homepage = "https://bleur.uz/";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [
orzklv
bahrom04
wolfram444
];
};
})