Skip to content

Commit

Permalink
hyprsome: init at 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
BhasherBEL committed Oct 31, 2024
1 parent cdf4b16 commit b3212f4
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2815,6 +2815,12 @@
githubId = 24254289;
name = "Payas Relekar";
};
bhasherbel = {
email = "nixos.maintainer@bhasher.com";
github = "bhasherbel";
githubId = 45831883;
name = "Brieuc Dubois";
};
bhipple = {
email = "bhipple@protonmail.com";
github = "bhipple";
Expand Down
27 changes: 27 additions & 0 deletions pkgs/by-name/hy/hyprsome/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:

rustPlatform.buildRustPackage rec {
pname = "hyprsome";
version = "0.1.12";

src = fetchFromGitHub {
owner = "sopa0";
repo = "${pname}";
rev = "985e1a3b03b5118c98c03983f60ea9f74775858c";
hash = "sha256-JiOV9c23yOhaVW2NHgs8rjM8l9qt181Tigf5sCnPep8=";
};

cargoHash = "sha256-OVtfoTcohMLBV+W0wbKtAxfnmjFGUJbs70nLts39g+U=";

meta = with lib; {
description = "Awesome-like workspaces for Hyprland";
homepage = "https://crates.io/crates/hyprsome";
license = licenses.gpl3;
maintainers = with maintainers; [ bhasherbel ];
platforms = platforms.linux;
};
}

0 comments on commit b3212f4

Please sign in to comment.