bleur: init at 0.0.7 (#518042)

This commit is contained in:
Sandro
2026-05-14 01:11:34 +00:00
committed by GitHub
2 changed files with 41 additions and 1 deletions
+1 -1
View File
@@ -29761,7 +29761,7 @@
wolfram444 = {
name = "Xabibulloh To'xtayev";
email = "kamiltox2006@gmail.com";
github = "woolfram444";
github = "wolfram444";
githubId = 109225370;
};
womeier = {
+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
];
};
})