feature/claurst #221

Merged
ahuston-0 merged 5 commits from feature/claurst into main 2026-05-01 01:51:32 -04:00
3 changed files with 14 additions and 0 deletions
Showing only changes of commit 41e50f98b5 - Show all commits

View File

@@ -19,6 +19,7 @@
libnotify,
}:
let
maintainers = import ../maintainers.nix;
bins = [
jq
bitwarden-cli
@@ -64,6 +65,7 @@ stdenv.mkDerivation {
description = "Wrapper for Bitwarden and Rofi";
homepage = "https://github.com/mattydebie/bitwarden-rofi";
license = licenses.gpl3;
maintainers = [ maintainers.alice ];
platforms = platforms.linux;
};

View File

@@ -10,6 +10,9 @@
libxcb,
}:
let
maintainers = import ../maintainers.nix;
in
rustPlatform.buildRustPackage rec {
pname = "claurst";
version = "0.0.9";
@@ -43,6 +46,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/Kuberwastaken/claurst";
license = licenses.gpl3Only;
mainProgram = "claurst";
maintainers = [ maintainers.alice ];
platforms = platforms.linux;
};
}

8
pkgs/maintainers.nix Normal file
View File

@@ -0,0 +1,8 @@
{
alice = {
name = "Alice Huston";
email = "aliceghuston@gmail.com";
github = "ahuston-0";
githubId = 43225907;
};
}