Terje Larsen

Results 212 comments of Terje Larsen

I also ran into this for a specific package, it is for a dependency that exists in two different versions. It is one of the `isarray` dependencies that fails. Like...

I solved my issue by upgrading one of the packages, then this transient dependency updated it's hash, but not it's version: ``` @@ -18017,7 +18017,7 @@ "isarray": { "version": "0.0.1",...

Okay, I think I have figured it out, the issue occurs when two versions of the same package exists and one of them has `sha512` while the other one has...

Having tested a regular `npm install` with custom cache directory I’m pretty sure the issue is with `nix-non-buildpackage`. It has fewer hashes and also missing duplicates from the index.

Also the icons don't align (due to tab-width being 1), I suggest increasing it to 2 or making it configurable via a defcustom.

This PKGBUILD works for me: ``` pkgname=fireplace-git pkgver=v3.1.2.r6.g53ac0bbd pkgrel=1 pkgdesc="Modular wayland window manager written in rust" arch=('i686' 'x86_64') url="https://github.com/Drakulix/fireplace" license=('MIT') depends=('wlc' 'pixman' 'wayland' 'wayland-protocols' 'libxkbcommon' 'systemd' 'libinput' 'libx11' 'libxcb' 'mesa'...

Did you try the `pam.sessionVariables` hack? I would be surprised if that is not working. Both `.pam_environment` and `XDG_DATA_DIRS` is a standard, so if that doesn’t work then that means...

I just had another look at this and got it to work with the following (for Ubuntu): ``` { targets.genericLinux = { enable = true; extraXdgDataDirs = [ "/usr/share/ubuntu" "/usr/local/share/"...

This is already provided (`defaultApp`). What you are seeing is a recent change in Nix 2.8 where the defaultApp needs to be a derivation as opposed to an attribute set...