flake: bump

This commit is contained in:
Guanran Wang 2024-10-07 16:07:53 +08:00
parent 9f3510a13a
commit e9eabae3ec
Signed by: nyancat
GPG key ID: 91F97D9ED12639CF
4 changed files with 20 additions and 22 deletions

View file

@ -9,8 +9,8 @@ end_of_line = lf
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
# Ignore diffs/patches # Ignore generated files
[*.{diff,patch}] [*.{diff,patch,tfstate}]
end_of_line = unset end_of_line = unset
insert_final_newline = unset insert_final_newline = unset
trim_trailing_whitespace = unset trim_trailing_whitespace = unset

View file

@ -16,11 +16,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728180673, "lastModified": 1728263678,
"narHash": "sha256-/ewRcQl0uKFauULAxzrl9ZQ2DgKvE0iT9gJCzDsNRIQ=", "narHash": "sha256-gyUVsPAWY9AgVKjrNPoowrIr5BvK4gI0UkDXvv8iSxA=",
"owner": "zhaofengli", "owner": "zhaofengli",
"repo": "colmena", "repo": "colmena",
"rev": "0fca61acc23bd95dc377758eb76885a8bce99f6a", "rev": "b0a62f234fae02a006123e661ff70e62af16106b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -225,11 +225,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1728056216, "lastModified": 1728269138,
"narHash": "sha256-IrO06gFUDTrTlIP3Sz+mRB6WUoO2YsgMtOD3zi0VEt0=", "narHash": "sha256-oKxDImsOvgUZMY4NwXVyUc/c1HiU2qInX+b5BU0yXls=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "b7ca02c7565fbf6d27ff20dd6dbd49c5b82eef28", "rev": "ecfcd787f373f43307d764762e139a7cdeb9c22b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -240,11 +240,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1728093190, "lastModified": 1728249353,
"narHash": "sha256-CAZF2NRuHmqTtRTNAruWpHA43Gg2UvuCNEIzabP0l6M=", "narHash": "sha256-7NBJm1jfMeAowE1J2oljYqWVvI9X7FyyxBY4O8uB/Os=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e2f08f4d8b3ecb5cf5c9fd9cb2d53bb3c71807da", "rev": "c8a17040be4a20b29589cb4043a9e0c36af1930e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -327,11 +327,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728181869, "lastModified": 1728268235,
"narHash": "sha256-sQXHXsjIcGEoIHkB+RO6BZdrPfB+43V1TEpyoWRI3ww=", "narHash": "sha256-lJMFnMO4maJuNO6PQ5fZesrTmglze3UFTTBuKGwR1Nw=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "cd46aa3906c14790ef5cbe278d9e54f2c38f95c0", "rev": "25685cc2c7054efc31351c172ae77b21814f2d42",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -350,11 +350,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1727734513, "lastModified": 1728230538,
"narHash": "sha256-i47LQwoGCVQq4upV2YHV0OudkauHNuFsv306ualB/Sw=", "narHash": "sha256-sbsMJOZgykaSdFbxLKghc0QMtolzl4P5nqpttBA3d5M=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "3198a242e547939c5e659353551b0668ec150268", "rev": "2750ed784e93e745a33fb55be7c2657adfb57c00",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -49,9 +49,7 @@
osu-lazer-bin osu-lazer-bin
prismlauncher prismlauncher
]) ])
++ (with inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system}; [ ++ (with inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system}; [ mumble-git ]);
mumble-git
]);
home.sessionVariables = { home.sessionVariables = {
# https://github.com/ppy/osu-framework/pull/6292 # https://github.com/ppy/osu-framework/pull/6292

View file

@ -28,7 +28,7 @@
pulseSupport ? true, pulseSupport ? true,
speechdSupport ? false, speechdSupport ? false,
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation {
pname = "mumble"; pname = "mumble";
version = "1.5.634-unstable-2024-10-05"; version = "1.5.634-unstable-2024-10-05";
@ -115,4 +115,4 @@ stdenv.mkDerivation (finalAttrs: {
]; ];
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
}; };
}) }