Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hyprland workspaces #363386

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 17 additions & 11 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
List of NixOS maintainers.
```nix
handle = {
# Required
name = "Your name";
# Required
name = "Your name";

# Optional, but at least one of email, matrix or githubId must be given
email = "[email protected]";
matrix = "@user:example.org";
github = "GithubUsername";
githubId = your-github-id;
# Optional, but at least one of email, matrix or githubId must be given
email = "[email protected]";
matrix = "@user:example.org";
github = "GithubUsername";
githubId = your-github-id;

keys = [{
keys = [{
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
}];
}];
};
```

Expand All @@ -30,14 +30,14 @@
Specifying a GitHub account ensures that you automatically:
- get invited to the @NixOS/nixpkgs-maintainers team ;
- once you are part of the @NixOS org, OfBorg will request you review
pull requests that modify a package for which you are a maintainer.
pull requests that modify a package for which you are a maintainer.

`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.

If `github` begins with a numeral, `handle` should be prefixed with an underscore.
```nix
_1example = {
github = "1example";
github = "1example";
};
```

Expand Down Expand Up @@ -20205,6 +20205,12 @@
githubId = 56278796;
name = "Sergio Ribera";
};
serhao = {
name = "Sin Ser'hao";
email = "[email protected]";
github = "shobu13";
githubId = 21972673;
};
sersorrel = {
email = "[email protected]";
github = "sersorrel";
Expand Down
6 changes: 5 additions & 1 deletion pkgs/by-name/hy/hyprland-workspaces/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/FieldofClay/hyprland-workspaces";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kiike donovanglover ];
maintainers = with maintainers; [
kiike
donovanglover
serhao
];
mainProgram = "hyprland-workspaces";
};
}
6 changes: 3 additions & 3 deletions pkgs/by-name/pa/panicparse/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@

buildGoModule rec {
pname = "panicparse";
version = "2.3.1";
version = "2.4.0";

src = fetchFromGitHub {
owner = "maruel";
repo = pname;
rev = "v${version}";
sha256 = "sha256-KjWUubrHPJUJWvoa13EGEwTd5uNC0nrHAF8hzdnxEmY=";
sha256 = "sha256-EBNOHI04v47sXAWrjHsU4pixP4TPOuHy8S3YmlkiLN4=";
};

vendorHash = "sha256-udkh/6Bu+7djxugMIuVsZvZ3JN2JooihsmcS2wJT0Wo=";
vendorHash = "sha256-/w/dtt55NVHoJ5AeHsqH/IRe3bJq1YvpasLh8Zn8Ckg=";

subPackages = [ "." ];

Expand Down
Loading