| 6 Jul 2021 |
hmenke | It's any extension that makes it segfault | 11:54:16 |
hmenke | Download gdb.txt | 11:55:04 |
hmenke | The backtrace from coredumpctl debug | 11:55:20 |
hexa | huh, luckily not related to my spidermonkey update (78.8.0 -> 78.11.0) | 11:57:52 |
hmenke | https://bugzilla.redhat.com/show_bug.cgi?id=1962974
https://bugzilla.redhat.com/show_bug.cgi?id=1963737 | 11:58:01 |
hmenke | Looks similar | 11:58:11 |
piegames | Wait, why are these reports on a Bugzilla? | 11:59:03 |
hmenke | Because they are RedHat bugs? | 11:59:45 |
Jan Tojnar | weird. why is the "potential duplicate" bug closed | 12:02:21 |
Jan Tojnar | * weird. why is the "potential duplicate" bug hidden | 12:02:27 |
hmenke | Jan Tojnar:
You are not authorized to access bug #1960548.
Most likely the bug has been restricted for internal development processes and we cannot grant access.
If you are a Red Hat customer with an active subscription, please visit the Red Hat Customer Portal for assistance with your issue
If you are a Fedora Project user and require assistance, please consider using one of the mailing lists we host for the Fedora Project.
| 12:05:57 |
hmenke | Even after login it's not visible. | 12:06:12 |
hmenke | Maybe it's exploitable and there is an embargo. | 12:06:22 |
Jan Tojnar | Jan Tojnar: no particular reason, that bug 1960548 is a duplicate itself of https://bugzilla.redhat.com/show_bug.cgi?id=1957952 | 12:16:29 |
Jan Tojnar | which mentions https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4344 | 12:16:50 |
piegames | So, aktueller Endstand, baut fröhlich vor sich hin:
let
# Pin some fairly new nixpkgs
sources = builtins.fetchTarball {
name = "nixpkgs-unstable-2021-07-06";
url = "https://github.com/nixos/nixpkgs/archive/291b3ff5af268eb7a656bb11c73f2fe535ea2170.tar.gz";
sha256 = "1z2l7q4cmiaqb99cd8yfisdr1n6xbwcczr9020ss47y2z1cn1x7x";
};
# For bootstrapping
pkgs0 = import sources {
overlays = [
(pkgs: super: {
# TODO replace with proper packaging once https://github.com/NixOS/nixpkgs/pull/128889 is merged
mold = pkgs.stdenv.mkDerivation {
pname = "mold";
version = "0.9.1";
src = pkgs.fetchgit {
url = "https://github.com/rui314/mold";
rev = "v0.9.1";
sha256 = "sha256-yIkW6OCXhlHZ1jC8/yMAdJbSgY9K40POT2zWv6wYr5E=";
};
nativeBuildInputs = with pkgs; [ clang_12 cmake lld_12 tbb xxHash zlib openssl git ];
dontUseCmakeConfigure = "true";
buildPhase = "make -j $NIX_BUILD_CORES";
installPhase = "mkdir -p $out $out/bin $out/share/man/man1 && PREFIX=$out make install";
};
binutils_mold = pkgs.wrapBintoolsWith {
bintools = pkgs.binutils-unwrapped.overrideAttrs (old: {
postInstall = ''
rm $out/bin/ld.gold
rm $out/bin/ld.bfd
ln -sf ${pkgs.mold}/bin/mold $out/bin/ld.bfd
'';
});
};
stdenv_mold = super.overrideCC super.stdenv (super.wrapCCWith rec {
cc = super.gcc-unwrapped;
bintools = pkgs.binutils_mold;
});
})
];
};
# Actual nixpkgs with patched linker in all packages
pkgs = import sources {
overlays = [
(pkgs: super: {
stdenv = pkgs0.stdenv_mold;
mold = pkgs0.mold;
})
];
};
in with pkgs;
# Packages we want to build
linkFarmFromDrvs "packages-with-mold" [
mold
binutils
stdenv
opencv
jack2
chromium
]
| 12:18:30 |
piegames | * (totally the wrong channel ^^) | 12:25:15 |
| spacesbot - keeps a log of public NixOS channels changed their display name from spacesbot to spacesbot - keeps a log of public NixOS channels. | 22:11:46 |
| 8 Jul 2021 |
| sshow joined the room. | 11:40:40 |
sshow | Hey! Having problems with screen locking with gnome in unstable. Nothing really happens when attempting to lock. .gsd-media-keys logs "org.gnome.Shell.ScreenShield was not provided by any .service files". | 11:42:01 |
Jan Tojnar | sshow: sorry, got distracted – this is weird | 18:09:32 |
Jan Tojnar | there is no such service file | 18:09:55 |
Jan Tojnar | as far as I can tell, GNOME Shell binds to that D-Bus address at runtime | 18:10:54 |
Jan Tojnar | sshow: does this persist after restarting? | 18:11:11 |
sshow | Yeah. I have been unable to lock at all since swotching to gnome. Locking is native im GNOME, right? | 18:12:16 |
Jan Tojnar | yeah, it works for me here | 18:16:29 |
Jan Tojnar | sshow: I presume you mean GNOME Shell? | 18:17:22 |
Jan Tojnar | do you also use GDM? | 18:17:49 |
sshow | yeah, I'm on services.xserver.desktopManager.gnome.enable = true. | 18:33:31 |
Jan Tojnar | sshow: what about the display manager? | 18:35:34 |