this post was submitted on 03 Apr 2025
12 points (100.0% liked)

libre

9934 readers
57 users here now

Welcome to libre

A comm dedicated to the fight for free software with an anti-capitalist perspective.

The struggle for libre computing cannot be disentangled from other forms of socialist reform. One must be willing to reject proprietary software as fiercely as they would reject capitalism. Luckily, we are not alone.

libretion

Resources

  1. Free Software, Free Society provides an excellent primer in the origins and theory around free software and the GNU Project, the pioneers of the Free Software Movement.
  2. Switch to GNU/Linux! If you're still using Windows in $CURRENT_YEAR, flock to Linux Mint!; Apple Silicon users will want to check out Asahi Linux.

Rules

  1. Be on topic: Posts should be about free software and other hacktivst struggles. Topics about general tech news should be in the technology comm or programming comm. That doesn't mean all posts have to be serious though, memes are welcome!
  2. Avoid using misleading terms/speading misinformation: Here's a great article about what those words are. In short, try to avoid parroting common Techbro lingo and topics.
  3. Avoid being confrontational: People are in different stages of liberating their computing, focus on informing rather than accusing. Debatebro nonsense is not tolerated.
  4. All site-wide rules still apply

Artwork

founded 4 years ago
MODERATORS
 

I'm trying to run trelby, some screenwriting software. I actually bricked my Ubuntu install when trying to set this up there because wxPython didn't install, I tried creating venvs and that didn't work either, and I ended up trying to delete Python entirely... So I ended up here.

I cloned the repo, set up a shell.nix with the required packages, and am now stuck with the same problem I had before: wxPython doesn't install.

More info

# shell.nix
let
  # We pin to a specific nixpkgs commit for reproducibility.
  # Last updated: 2024-04-29. Check for new commits at https://status.nixos.org/.
  pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/cf8cc1201be8bc71b7cbbbdaf349b22f4f99c7ae.tar.gz") {};
in pkgs.mkShell {
  packages = [
    (pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
      # select Python packages here
      setuptools
      wxPython
      lxml
      reportlab
      pytest
    ]))
  ];
}

Output from attempting to run nix-shell:

unpacking 'https://github.com/NixOS/nixpkgs/archive/cf8cc1201be8bc71b7cbbbdaf349b22f4f99c7ae.tar.gz' into the Git cache...
error:
       … while calling the 'derivationStrict' builtin
         at <nix/derivation-internal.nix>:37:12:
           36|
           37|   strict = derivationStrict drvAttrs;
             |            ^
           38|

       … while evaluating derivation 'nix-shell'
         whose name attribute is located at /nix/store/4ab6vrcph07w6ra79bc04fy8bbcmb9r0-source/pkgs/stdenv/generic/make-derivation.nix:331:7

       … while evaluating attribute 'nativeBuildInputs' of derivation 'nix-shell'
         at /nix/store/4ab6vrcph07w6ra79bc04fy8bbcmb9r0-source/pkgs/stdenv/generic/make-derivation.nix:375:7:
          374|       depsBuildBuild              = elemAt (elemAt dependencies 0) 0;
          375|       nativeBuildInputs           = elemAt (elemAt dependencies 0) 1;
             |       ^
          376|       depsBuildTarget             = elemAt (elemAt dependencies 0) 2;

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: undefined variable 'wxPython'
       at /home/edwinc/Documents/code/trelby/shell.nix:11:7:
           10|       setuptools
           11|       wxPython
             |       ^
           12|       lxml

Cheers!

Edit: solved! Just change the wxPython to wxpython on the shell.nix file, and probably also change the manual fetch from an outdated repo to <nixpkgs> as @Edie@hexbear.net recommended.

you are viewing a single comment's thread
view the rest of the comments
[–] stupid_asshole69@hexbear.net 3 points 2 days ago (2 children)

If you don’t have a solution when I get home tonight I’ll install this on Debian and explain how it went.

We should be able to figure out together how to translate that into getting it running on nixos, whatever that is.

[–] mayo_cider@hexbear.net 3 points 2 days ago (1 children)

This is why I love the linux community

Willing to do anything to name their favorite distro

[–] stupid_asshole69@hexbear.net 2 points 2 days ago

I would say “I run Debian, btw!” But you already knew because of the b.o. smell.

[–] FunkyStuff@hexbear.net 2 points 2 days ago (1 children)

I'm doing some homework so I haven't tried what hello_hello said (not looking forward to figuring out how to do everything on Docker, since it was far from trivial even setting it up on Ubuntu). Thanks.

[–] hello_hello@hexbear.net 2 points 2 days ago* (last edited 2 days ago) (1 children)

There are prebuilt binaries on their website, you dont have to compile trelby from source on your own.

I just mentioned docker/containers because it's a way to escape NixOS FHS incompatability and get back to a standard Linux environment.

I'm surprised that trelby isnt packaged in NixOS, maybe someone will get on that.

[–] FunkyStuff@hexbear.net 2 points 2 days ago

Yeah you're absolutely right, I had tried that website 2 days ago but my "spot the download button" skills failed and I had ended up downloading the source code; I ended up thinking the source code was all they had, no binary release.