diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 289441650460..372279a9ed23 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -29761,7 +29761,7 @@ wolfram444 = { name = "Xabibulloh To'xtayev"; email = "kamiltox2006@gmail.com"; - github = "woolfram444"; + github = "wolfram444"; githubId = 109225370; }; womeier = { diff --git a/pkgs/by-name/bl/bleur/package.nix b/pkgs/by-name/bl/bleur/package.nix new file mode 100644 index 000000000000..17d5345493a0 --- /dev/null +++ b/pkgs/by-name/bl/bleur/package.nix @@ -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 + ]; + }; +})