| 18 Mar 2025 |
elikoga | Should be reported at https://github.com/NixOS/nixpkgs/issues as an issue with zotero on unstable | 14:29:53 |
elikoga | * Should be reported at https://github.com/NixOS/nixpkgs/issues as an issue with the newest zotero version on unstable | 14:30:20 |
laauurraa | Oh huh, you're right. On 24.11 it does launch (although I get a different bug). I didn't realize it was an issue with the zotero package itself | 14:30:42 |
laauurraa | I'm getting a crash with 24.11 though :(
/nix/store/zhj8yr1ykkj7j266v4pcjxfna4qx55ga-zotero-7.0.10/bin/.zotero-wrapped: line 20: 48168 Segmentation fault (core dumped) "$CALLDIR/zotero-bin" -app "$CALLDIR/app/application.ini" "$@"
| 14:31:10 |
elikoga | Can you provide more details? | 14:32:01 |
laauurraa | I'm running NixOS unstable myself. The only thing I changed in the flake was to pin to nixos-24.11 IE, my flake looks like this now:
{
description = "zotero2remarkable bridge development tools";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
pythonEnv = pkgs.python312.withPackages (ps: []);
environment = pkgs.mkShell {
buildInputs = [
pkgs.zotero
pkgs.poetry
pythonEnv
];
};
in {
devShells.default = environment;
}
);
}
| 14:32:47 |
laauurraa | I run nix develop then zotero | 14:32:55 |
laauurraa |  Download image.png | 14:33:08 |
elikoga |
I'm running NixOS unstable myself
Why
| 14:33:33 |
laauurraa | Uh, why not? | 14:33:48 |
elikoga | . | 14:33:56 |
elikoga | I would not recommend using the unstable branch unless you are testing the unstable branch or planning to fix it if something breaks on your system | 14:34:20 |