Skip to content

Commit bd24648

Browse files
Merge master into staging-next
2 parents 0d074a5 + 19f8157 commit bd24648

File tree

46 files changed

+949
-564
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+949
-564
lines changed

nixos/modules/hardware/corectrl.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ in
1212
Add your user to the corectrl group to run corectrl without needing to enter your password
1313
'');
1414

15+
package = mkPackageOption pkgs "corectrl" {
16+
extraDescription = "Useful for overriding the configuration options used for the package.";
17+
};
18+
1519
gpuOverclock = {
1620
enable = mkEnableOption (lib.mdDoc ''
1721
GPU overclocking
@@ -32,9 +36,9 @@ in
3236

3337
config = mkIf cfg.enable (lib.mkMerge [
3438
{
35-
environment.systemPackages = [ pkgs.corectrl ];
39+
environment.systemPackages = [ cfg.package ];
3640

37-
services.dbus.packages = [ pkgs.corectrl ];
41+
services.dbus.packages = [ cfg.package ];
3842

3943
users.groups.corectrl = { };
4044

pkgs/applications/emulators/ccemux/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let
1111
if useCCTweaked
1212
then fetchurl {
1313
url = "${baseUrl}-cct.jar";
14-
hash = "sha256-B9Zan6wpYnUtaNbUIrXvkchPiEquMs9R2Kiqg85/VdY=";
14+
hash = "sha256-nna5KRp6jVLkbWKOHGtQqaPr3Zl05mVkCf/8X9C5lRY=";
1515
}
1616
else fetchurl {
1717
url = "${baseUrl}-cc.jar";

pkgs/applications/misc/ablog/default.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
python3.pkgs.buildPythonApplication rec {
77
pname = "ablog";
8-
version = "0.11.4.post1";
8+
version = "0.11.6";
99
format = "pyproject";
1010

1111
src = fetchPypi {
1212
inherit pname version;
13-
hash = "sha256-Zyvx7lVUQtjoGsSpFmH8pFrgTGgsFd4GMsL3fXKtUpU=";
13+
hash = "sha256-fV4W4AaiqyruIz3OQ7/lGkMPMKmyiFa+fdU2QeeQCvs=";
1414
};
1515

1616
nativeBuildInputs = with python3.pkgs; [
@@ -36,6 +36,7 @@ python3.pkgs.buildPythonApplication rec {
3636
pytestFlagsArray = [
3737
"-W" "ignore::sphinx.deprecation.RemovedInSphinx90Warning"
3838
"--rootdir" "src/ablog"
39+
"-W" "ignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError
3940
];
4041

4142
meta = with lib; {

0 commit comments

Comments
 (0)