7 Dec 2023 |
| alan set a profile picture. | 21:25:51 |
| alan changed their profile picture. | 21:36:22 |
8 Dec 2023 |
Sporesirius | In reply to @lily:lily.flowers
doing a nixos config like the below should patch in the fix and then graft it into your system. it, uh, doesn't work in pure eval (e.g. flakes) so you'll need to add --impure or something if you use flakes (it also needs IFD, but unless you manually disabled that, it should be enabled):
system.replaceRuntimeDependencies = [
({
original = pkgs.alsa-ucm-conf;
replacement = pkgs.alsa-ucm-conf.overrideAttrs (oldAttrs: {
patches = (oldAttrs.patches or []) ++ [
(fetchpatch {
name = "alsa-ucm-conf-splitpcm-device-argument-fix.patch";
url = "https://github.com/alsa-project/alsa-ucm-conf/commit/b68aa52acdd2763fedad5eec0f435fbf43e5ccc6.patch";
hash = "sha256-8WE4+uhi4W7cCSZYmL7uFpcHJ9muX09UkGXyZIpEd9I=";
})
];
});
})
];
Oh wow, I see, that makes a lot of sense. Thanks for the help. I'll try to PR, but first I have to fix a problem compiling with the patch. xdg-desktop-portal-1.18.2.drv fails a test. | 00:29:45 |
10 Dec 2023 |
| Yvan Sraka changed their display name from Yvan Sraka to Yvan Sraka (old). | 10:56:12 |
| @rootname:matrix.org joined the room. | 12:06:44 |
17 Dec 2023 |
| @nam3l33ss:matrix.org changed their profile picture. | 04:39:12 |
21 Dec 2023 |
| eyduh (she/they) joined the room. | 02:19:19 |
Jean-Michaël Celerier | hello! what would be the next steps to get this PR to progress? https://github.com/NixOS/nixpkgs/pull/174802#issuecomment-1845238990 | 16:09:31 |
Minijackson | oh I must've missed the latest notifications, I thought we were still waiting for a Qt6-compatible release | 17:40:16 |
Minijackson | I'll see if I can update the PR tonight | 17:40:23 |
Minijackson | if someone wants to co-maintain ossia-score, please step up, I'm pretty busy these days so it's easy for me to miss releases | 17:41:03 |
Minijackson | Jean-Michaël Celerier: done | 19:06:40 |
Jean-Michaël Celerier | thanks! | 19:24:05 |
Jean-Michaël Celerier | the latest releases are all based on Qt 6 | 19:24:15 |
Jean-Michaël Celerier | I'd be up for participating to the co-maintainership at least by checking the build script swhen there's an update | 19:24:44 |
Jean-Michaël Celerier | I'd like to add a Nix step to ossia's CI to make sure there aren't any breaking changes | 19:24:59 |
Jean-Michaël Celerier | e.g. here: https://github.com/ossia/score/actions/runs/7267711945 | 19:25:34 |
Minijackson | nice! | 19:25:56 |
Jean-Michaël Celerier | but I don't know the correct invocations and my personal Nix experiences were... very suboptimal aha | 19:26:13 |
Minijackson | do you want me to add you to the maintainer list? | 19:26:28 |
Minijackson | no worries, the Nix community tends to be very helpful | 19:26:40 |
Jean-Michaël Celerier | deql | 19:26:40 |
Jean-Michaël Celerier | deal | 19:26:42 |
Minijackson | are you already in maintainers/maintainer-list.nix ? | 19:27:15 |
Jean-Michaël Celerier | nope | 19:27:23 |
Minijackson | see here, the top comment: https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix | 19:28:52 |
22 Dec 2023 |
| medliviz joined the room. | 12:31:49 |
24 Dec 2023 |
Rampoina | I'm getting sound issues with Musescore and Ardour open simultaneously | 12:04:31 |
Rampoina | Musecore outputs sound just fine when Ardour isn't open but when it is the sound plays and stops really quickly | 12:05:09 |
Rampoina | I'm using pipewire and musnix | 12:05:48 |