gchristensen changed the topic of #nixos to: The Nix Ecosystem, https://nixos.org | NixOS: https://nixos.org/nixos/download.html | Nix: https://nixos.org/nix/download.html | Logs: https://logs.nix.samueldr.com/nixos/ | #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat
<astrall33> we have to a little 'hack' to get "nix search" to work https://github.com/NixOS/nix/issues/1865
<{^_^}> nix#1865 (by matthewbauer, 1 year ago, open): attribute 'nixpkgs' in selection path 'nixpkgs.hello' not found
<clever> freeman42x: this is how you turn flags in a cabal package on/off
<astrall33> NIX_PATH=nixpkgs=$NIX_PATH/nixpkgs
<clever> astrall33: ahh
<astrall33> i have no idea why.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70547 → aespipe: 2.4e -> 2.4f → https://git.io/JeCK7
<clever> astrall33: i'm guessing that `nix search` will look for a key=value pair in NIX_PATH
<clever> astrall33: and if your just doing NIX_PATH=/path/to/dir, and dir then contains nixpkgs, nix search doesnt understand it
<{^_^}> [nixpkgs] @worldofpeace merged pull request #70501 → gnome3.gnome-session: always run /etc/set-environment on startup → https://git.io/JeClM
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JeCK5
<astrall33> ok...well can we says it's a bug?
<astrall33> does nixos have bugs?
<astrall33> yep..
doublex has joined #nixos
<freeman42x> clever, so you're saying that a flag can not be enabled in a .cabal file but only in a .project file?
<clever> freeman42x: yes
<freeman42x> clever, interesting, that sounds... unintuitive
<{^_^}> [nixpkgs] @matthewbauer pushed commit from @ttuegel to release-19.09 « pim-data-exporter: Add missing dependencies »: https://git.io/JeCKd
<freeman42x> especially since .project file did not use to exist at some point
<clever> freeman42x: the .cabal file cant control the building of other packages, it can only refer to things already built
<clever> freeman42x: something else must `cabal build` and `cabal install` those things
<clever> either stack, nix, or cabal.project
<clever> and that something else, is what chooses those flags
<freeman42x> clever, am I getting closer to a solution? https://i.imgur.com/zVocxHK.png
<clever> freeman42x: looks good at a glance
<freeman42x> clever, aight, let's see if by building it HIE will work
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70549 → appstream-glib: 0.7.15 -> 0.7.16 → https://git.io/JeCKx
wfranzini has quit [Remote host closed the connection]
MichaelRaskin has left #nixos [#nixos]
wfranzini has joined #nixos
<freeman42x> clever, do I need to use cabal v2 to use the .project file?
<clever> freeman42x: how else is hie building miso for you?
<freeman42x> clever, I only used HIE with v1 until now
<clever> freeman42x: that requires you to build every single dependency seperately and by hand
<clever> or let something like nixpkgs do it for you
<freeman42x> I don't know what you mean. Just saying: every time I used HIE before I used v1
<clever> you either need to let nixpkgs do things for you, or use cabal 2
<freeman42x> ok, I will have to use v2 then since I am pretty sure that HIE does not work with nix
wtv_nick has joined #nixos
<clever> freeman42x: i see why now, you told cabal to set the jsaddle flag, on app
<clever> freeman42x: app doesnt have a jsaddle flag
<{^_^}> [nixpkgs] @adisbladis opened pull request #70550 → qt5.qtbase: Build all QPA backends by default → https://git.io/JeC6U
joehh has joined #nixos
<freeman42x> clever, ok... but... how... what? sorry, I don't know. what do I need to do? how do I tell it to set it on the miso library?
<joehh> hello, is there anyway to depend only on the content of a file within a repo rather than the revision of the repo containing the file?
<clever> freeman42x: the jsaddle flag is on the miso package
<clever> freeman42x: so you must tell cabal to set it on miso, not app
<clever> freeman42x: you must use `package miso`, not `package app`
<joehh> ie if I store a set of files within a repo, which has only some files change with each revision, is it possible not to require dependencies on the unchanged files to be rebuilt?
joebobjoe has quit [Quit: leaving]
<joehh> when the repo changes and the particular file does not
<oscarvarto> Hi! I would like to have installed a newer version of SBT. I am using NixOS with nixos-unstable channel already. Is it necessary that I also add `nixpkgs-unstable` as stated here: https://stackoverflow.com/a/41230431
<oscarvarto> Hi! I would like to have installed a newer version of SBT. I am using NixOS with nixos-unstable channel already. Is it necessary that I also add `nixpkgs-unstable` as stated here: https://stackoverflow.com/a/41230431 ?
ddellacosta has joined #nixos
<clever> oscarvarto: nixos-unstable and nixpkgs-unstable both follow master, so there isnt much difference between them
<oscarvarto> I have already installed SBT, but installed version is 1.2.8
<oscarvarto> (I am using that as an example, same situation could arise for other stuff)
<clever> oscarvarto: then switch over to the nixpkgs-channels repo, https://github.com/NixOS/nixpkgs-channels/commit/fbd3e7b9e5d09c94d1ff44105770139e209ac538
<clever> oscarvarto: this shows, that the change is currently in nixos-unstable-small and nixpkgs-unstable
<clever> ,howoldis
<clever> oscarvarto: nixos-unstable is 10 days behind, while nixos-unstable-small is 1 day behind
<clever> oscarvarto: some ipv6 tests, and ova images are failing to build, so nixos-unstable hasnt updated
waleee-cl has quit [Quit: Connection closed for inactivity]
<clever> nixpkgs-unstable and nixos-unstable-small test less things, so they update faster
<clever> oscarvarto: you could just do `nix-env -f https://github.com/nixos/nixpkgs/archive/master.tar.gz -iA sbt` to install it from master temporarily
mishac has joined #nixos
<mishac> clever hello again. I have done all the steps and at the end edited bashrc file to include path, however i am still getting the same problem bash: nix-store: command not found when i run nix copy closure
<clever> mishac: add an echo to `.bashrc`, does it print when you `ssh user@host nix-store --version` ?
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JeC6Y
t58 has quit [Quit: Night]
<mishac> @clever nope
<clever> mishac: then that .bashrc isnt fixing PATH either, is it in the home for the right user?
<clever> mishac: what if you try .bash_profile instead?
<mishac> @yep
<clever> mishac: what is the shell for that user?
<mishac> @clever i think i fixed the path, commands are available in the shell.
<clever> mishac: is it also available in `ssh user@host nix-store --version` ?
jluttine has joined #nixos
<clever> exactly as i gave, the nix-store must be on the same line as the ssh
freeman42x has quit [Ping timeout: 276 seconds]
<mishac> clever i think bash profile is not in the system
<mishac> clever i edited bashrc to include path
m0rphism has quit [Ping timeout: 268 seconds]
<clever> mishac: does it work now?
<mishac> clever nope, i ran this command on ssh debian@192.168.7.2 nix-store --version
<clever> mishac: what does `grep debian /etc/passwd` say?
<mishac> clever debian:x:1000:1000:Demo User:/home/debian:/bin/bash
<clever> mishac: cat /home/debian/.bashrc ?
<clever> mishac: line 6-9 is the problem, that causes the file to return early
<clever> mishac: you must fix the PATH before that point, not after it
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/a8d71d38594 (from 43 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
alex`` has quit [Quit: WeeChat 2.6]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70551 → angelscript: 2.33.0 -> 2.34.0 → https://git.io/JeC6l
jluttine has quit [Ping timeout: 276 seconds]
<astrall33> well, it seems that this 'bug in nix search...is rather bizzare. https://github.com/NixOS/nix/issues/3119
<{^_^}> nix#3119 (by nomoreweirdmachines, 1 hour ago, open): nix search return no packages , but other tools seems to be ok?
hmpffff_ has quit [Quit: nchrrrr…]
jluttine has joined #nixos
<mishac> @clever to make nix commands executable without sudo, do I need to change the ownership of the store (including all store contents?)
<clever> mishac: no
<clever> mishac: you only need +r and +x to the store, which nix gives to all
<mishac> clever does it incldude all store contents
<clever> mishac: yes
<clever> mishac: are you getting an error somewhere?
jlv has joined #nixos
<mishac> clever error: opening lock file '/nix/var/nix/db/big-lock': Permission denied
<clever> mishac: ah, that part, if you want a normal single-user install, then that single user must own everything in /nix/
<jlv> Do I need to do anything special to use `fetchFromGitHub` in configuration.nix? I keep getting an infinite recursion.
<clever> mishac: chown debian -R /nix
<clever> jlv: where exactly are you using it?
<jlv> clever: I'm trying to use it to grab an overlay, so its in `nixpkgs.overlays`.
<clever> jlv: you probably want to use (import <nixpkgs> {}).fetchFromGitHub
lambda-11235 has joined #nixos
<lambda-11235> I'm trying to build an out-of-tree kernel module according to https://nixos.wiki/wiki/Linux_kernel#Developing_kernel_modules.
<jlv> clever: Looks like that fixes the recursion. Still other errors, but I think I can figure those out :) The infinite recursion errors are just a little difficult to understand.
<lambda-11235> The module compiles but insmod complains of an invalid module format. Is there something else that I should do?
philr has joined #nixos
<clever> jlv: in this case, it needs to know what the value of the overlays is, to know the value of fetchFromGitHub
<jlv> That makes sense
<lambda-11235> nvm, the problem is I'm not using the default kernel *facepalm*
<mishac> clever@ i am trying to nix-copy the package, and this error pops up. error: serialised integer 5207041058928806221 is too large for type 'j'
<mishac> clever i used this command to copy it nix copy nixpkgs.pkgsCross.armv7l-hf-multiplatform.valgrind --to ssh://debian@192.168.7.2
oscarvarto has quit [Ping timeout: 276 seconds]
<mishac> clever the same error appears with nix-copy closure
lambda-11235 has quit [Read error: Connection reset by peer]
<clever> > (5207041058928806221).toString(16)
<clever> 'HC AHSH\u0000'
<clever> > Buffer("4843204148534800","hex").toString("ascii")
<clever> '4843204148534800'
<{^_^}> value is an integer while a set was expected, at (string):269:1
<{^_^}> error: syntax error, unexpected ',', expecting ')', at (string):269:26
<clever> mishac: i think you have an echo in your .bashrc still, its printing something about an hmac hash?
<clever> mishac: what is the exact output from `ssh debian@192.168.7.2 nix-store --version` ?
<mishac> clever yes, there is echo in the shell
<clever> mishac: try removign that
lambda-11235 has joined #nixos
<mishac> clever after transfering package , i need to install it with nix-env -i
oscarvarto has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70552 → barrier: 2.3.1 -> 2.3.2 → https://git.io/JeC6S
<mishac> clever how do i specify the path to the package
<iqubic> Why hasn't nixos-unstable been updated in a long time..
<clever> mishac: just use the same path it was at on the other machine
<clever> iqubic: 2019-10-06 21:25:22 < clever> oscarvarto: some ipv6 tests, and ova images are failing to build, so nixos-unstable hasnt updated
<mishac> clever oh.
<clever> mishac: once installed, it should be listed in `nix-env -q` and be merged within ~/.nix-profile
<iqubic> clever: I realize that. I was just wondering why we haven't sped this up?
ddellacosta has quit [Ping timeout: 240 seconds]
<clever> iqubic: dont know
selfsymmetric-pa has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70553 → assimp: 4.1.0 -> 5.0.0 → https://git.io/JeC6x
wtv_nick has quit [Remote host closed the connection]
astrall33 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70554 → libsForQt5.accounts-qt: 1.15 -> 1.16 → https://git.io/JeCif
<mishac> clever Its all working. Hurray! Thank you for your help!
<clever> mishac: yay
<mishac> clever now i need to write a detailed guide
<mishac> clever in case it becomes useful and i dont forget.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70555 → acme-sh: 2.8.2 -> 2.8.3 → https://git.io/JeCik
<oscarvarto> How can I make IntelliJ Idea use JDK11? I am installing using `(jetbrains.idea-community.override { jdk = adoptopenjdk-hotspot-bin-11; })`, still, the only JDK it founds is JDK 8
<oscarvarto> Also, where is the recommended paste service (possibly with nix language support)?
<clever> oscarvarto: i prefer using gist, since it had edit, fork, and nix support
<oscarvarto> OK. Thanks for the help, again!!! Thanks a lot clever for being there :)
<clever> yep
jluttine has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @puffnfresh opened pull request #70556 → direvent: init at 5.2 → https://git.io/JeCim
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70557 → charliecloud: 0.9.8 -> 0.11 → https://git.io/JeCiY
iyzsong has joined #nixos
<{^_^}> [nixpkgs] @veprbl pushed to release-19.09 « ghc modules: use permanent urls »: https://git.io/JeCiO
<jlv> Does nix have anything like hackage, where I can easily see the types and documentation of functions?
<clever> jlv: mostly, i just read the definitions in lib.nix
jluttine has joined #nixos
<jlv> clever: hmm, I'm looking around in lib, but I still can't find the return type of a fetcher like fetchFromGitHub.
<oscarvarto> clever: Here is my configuration: https://gist.github.com/oscarvarto/0cfc4b14182d5eb95b375f120c939a8e#file-configuration-nix-L50 Idea can't see JDK 11? What am I missing?
<clever> jlv: fetchFromGitHub, and all of the other fetch functions, are just derivations
<clever> jlv: they return a set, which can also be treated as a string
<clever> jlv: the fetch functions are also part of pkgs., not lib., so youll find them in all-packages.nix
<jlv> clever: That was the missing piece :) I was expecting a path, not a string. I will say, I've been tripped up by that a few times now. Sometimes a path is a `path`, sometimes it is a `str`.
<clever> jlv: paths can also turn into strings just by using them in certain ways
<clever> > builtins.typeOf ./.
<{^_^}> "path"
<clever> > builtins.typeOf "${./.}"
<{^_^}> access to path '/var/lib/nixbot/state/nixpkgs' is forbidden in restricted mode
<clever> ehh, bot wont let me show it, but try that in `nix repl`
lambda-11235 has quit [Quit: Bye]
<jlv> clever: In this case, I was trying to use it like `PATH/overlay.nix`, when I needed `path + "/overlay.nix"`
<clever> ah, if its a path in a variable,then you need to add to it with + like that
<clever> jlv: also, beware, ./. + "/" == ./.
<clever> nix will strip any redundant /
<clever> 's after every + operation
silver_ has quit [Read error: Connection reset by peer]
<jlv> clever: The error was throwing me off "error: attempt to call something which is not a function but a set". I guess the `/` was expecting a function, and it was calling the derivation a set instead of a path (because it is both)?
<jlv> *instead of a string
<clever> jlv: that could parse as either <expr> /overlay.nix
<clever> as-in, treating PATH as a function, and then running it on a 2nd path, /overlay.nix
<clever> or it could parse as <expr> / <expr>, plain division
<jlv> clever: I see, that makes more sense now.
abathur has joined #nixos
<nh2_> hey, why does it say on https://nixos.org/nixos/download.html still that 19.03 is the latest release?
<clever> nh2_: 19.09 hasnt finished stabalizing yet
<{^_^}> [nixpkgs] @worldofpeace pushed commit from @DianaOlympos to release-19.09 « doc/beam: rebar3-open is now removed (#70523) »: https://git.io/JeCi0
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
<nh2_> clever: hmm I must have confused myself then, I thought it was released
iyzsong has quit [Read error: Connection reset by peer]
rople has joined #nixos
millerj has joined #nixos
felixfoertsch23 has joined #nixos
felixfoertsch has quit [Ping timeout: 245 seconds]
iyzsong has joined #nixos
fusion809 has joined #nixos
AmandaC has joined #nixos
rople has quit [Ping timeout: 265 seconds]
<AmandaC> I'm trying to run hydra against my overlay + my nixos/nix-darwin configs. I've got the nixos/nix-darwin configs testing fine, but I'm having some issues with the overlay. I'd prefer to only test my own packages (and their dependencies) but I'm not sure how to do that, and it seems I'm OOM-ing my hydra server in the process of testing everything: Oct 06 22:07:24 lilac hydra-evaluator[1230]: Out of memory!
<{^_^}> [nixpkgs] @delroth opened pull request #70558 → zziplib: apply patches for CVE-2018-16548 → https://git.io/JeCia
<{^_^}> [nixpkgs] @delroth opened pull request #70559 → zziplib: apply patches for CVE-2018-16548 [19.03] → https://git.io/JeCiw
rople has joined #nixos
<{^_^}> [nixpkgs] @delroth opened pull request #70560 → zziplib: apply patches for CVE-2018-16548 [19.09] → https://git.io/JeCir
orivej has quit [Ping timeout: 264 seconds]
<mishac> @clever if in case i would want to remove nix package how do i do it?
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/4c6b739fd72 (from 23 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
selfsymmetric-pa has quit [Remote host closed the connection]
justsomeguy has joined #nixos
<clever> mishac: find its name (or full storepath), and just nix-env -e it
mishac has quit [Remote host closed the connection]
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
justsomeguy has quit []
aw has joined #nixos
spacefrogg has joined #nixos
<evils> how do i recreate a hydra failure locally with an attempted fix applied?
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/4c6b739fd72 (from 37 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<clever> evils: if you read the configuration tab in the hydra jobset, it will name a release.nix file
<clever> evils: and the name of the job itself, is an attr of release.nix, so `nix-build path/to/release.nix -A something`
<evils> that gets me the cached result
<clever> evils: cached success or cached failure?
otulp has quit [Ping timeout: 268 seconds]
<evils> clever: it seems to run, the hydra error is a build issue
<clever> evils: if you checkout the same rev hydra used, and leave it un-modified, can you reproduce the failure?
<evils> how do i find that rev?
<clever> evils: can you link the failing build on hydra?
<clever> evils: yeah, the nixpkgs rev is on that tab
<evils> yea found that just before i linked it xD
<evils> ok, it's building now
<clever> [clever@amd-nixos:~/apps/nixpkgs-master]$ nix-build pkgs/top-level/release.nix -A bees.x86_64-linux
nexgen has joined #nixos
<clever> ImportError: No module named pkg_resources
<clever> evils: yep, i can reproduce the failure on this end
<evils> yea here too
felixfoertsch23 has quit [Quit: ZNC 1.7.3 - https://znc.in]
felixfoertsch has joined #nixos
<clever> evils: but if i switch to master, it works!
<clever> somebody beat you to it?
<evils> fairly sure :P
<clever> evils: https://hydra.nixos.org/job/nixos/release-19.09/nixpkgs.bees.x86_64-linux this says it was fixed 3 builds ago
<evils> quite sure the kicad issue has already been resolved, i'm just trying to figure out what fixed it xD
<clever> if you click the last failing, and the first passing, youll have a narrow range of revs
<clever> or you can just use bisect the wrong way around, lol
<clever> claim the passing one is bad, and the failing one is good!
<clever> then it will find out who fixed it!
<evils> are you saying the issue is already resolved on 19.09? so the link here is dated? https://github.com/NixOS/nixpkgs/issues/68361
<{^_^}> #68361 (by disassembler, 3 weeks ago, open): Zero Hydra Failures: 19.09 edition
<clever> oh, i didnt check the release 19.09 branch, but if hydra is saying its passing, then its fixed
<clever> its also checked on that issue
<evils> ah doh xD
<oscarvarto> Trying again, please I need some help. How can I make IntelliJ Idea use JDK11? I am installing using `(jetbrains.idea-community.override { jdk = adoptopenjdk-hotspot-bin-11; })`, still, the only JDK it founds is JDK 8
<jlv> Is there a standard procedure if your pull request has been around a while without a review? I'm concerned it will be lost in pull request limbo.
evils has quit [Ping timeout: 240 seconds]
evils has joined #nixos
kleisli has joined #nixos
MinceR_ has joined #nixos
MinceR has quit [Ping timeout: 268 seconds]
<AmandaC> did you tag the relevent maintainers when you filed it, jlv? I had mine turned around in about 24h, though it was a small change
<clever> ,pr
<{^_^}> 0. Sorry. 1. If you complain about PR being in limbo, always provide a number («I have an unmerged PR (#23924)…»), bot will print PR title and it might bring you an impulse-merge. 2. Please look up who commits similar work and ping these people (or request-review), keeping up with all the PRs is not really possible.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70563 → clamav: 0.101.4 -> 0.102.0 → https://git.io/JeCPq
boxscape48 has joined #nixos
boxscape has quit [Ping timeout: 246 seconds]
<jlv> AmandaC: I pinged the maintainer, but there hasn't been a response in over a month.
<jlv> PR is (#67541).
<{^_^}> https://github.com/NixOS/nixpkgs/pull/67541 (by JustinLovinger, 5 weeks ago, open): s3ql: clean up dependencies, build for release, fix tests, fix `--systemd` option, fix `umount.s3ql`
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70564 → distgen: 1.3 -> 1.4 → https://git.io/JeCPY
boxscape48 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70565 → dpic: 2016.01.12 -> 2019.08.30 → https://git.io/JeCPn
Supersonic has quit [Disconnected by services]
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
kleisli has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70566 → dos2unix: 7.4.0 -> 7.4.1 → https://git.io/JeCPW
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70567 → pantheon.elementary-camera: 1.0.4 -> 1.0.5 → https://git.io/JeCP8
<{^_^}> [nixpkgs] @veprbl merged pull request #70466 → vlang: Propagate build inputs, add $LDFLAGS → https://git.io/JeCmU
<{^_^}> [nixpkgs] @veprbl pushed commit from @Chiiruno to master « vlang: Propagate build inputs, add $LDFLAGS (#70466) »: https://git.io/JeCPR
mrCyborg has quit [Quit: The Lounge - https://thelounge.github.io]
sb0 has joined #nixos
<energizer> i want to try this package for theming qt apps. https://nixos.org/nixos/packages.html?attr=libsForQt5.qtstyleplugin-kvantum&channel=nixos-19.03&query=kvantum i have single-user nix installed. following the installation instructions it says 'error: attribute 'nixos' in selection path 'nixos.libsForQt5.qtstyleplugin-kvantum' not found'
<Shell> energizer: try nixpkgs instead of nixos
<energizer> Shell: nice, thanks
iyzsong has quit [Ping timeout: 276 seconds]
ebzzry has quit [Ping timeout: 250 seconds]
iyzsong has joined #nixos
mishac has joined #nixos
mounty has joined #nixos
<mishac> clever last question, hopefully. I generated a package for arm and transferred it to beaglebone, however it consists of several different hashes, is there a way to retrieve/install all of them at once?
<clever> mishac: different hashes?
<{^_^}> [nixpkgs] @sigma opened pull request #70568 → prettyping: works on unix platforms → https://git.io/JeCPS
<mishac> @clever say package gcc is generated, it containts of folder binutils/ coreuitls/ gcc/ wrapper all with different hashes in the store
domogled has joined #nixos
<clever> mishac: you dont need gcc to be copied to the beaglebone
<clever> mishac: you can copy only the final thing with the binaries you want
<clever> nix will deal with copying anything it depends on
<{^_^}> [nixpkgs] @sigma opened pull request #70569 → teleport: 4.0.4 -> 4.1.0 → https://git.io/JeCPH
<mishac> @clever yeah, i see. I think i need to patch up a few things. I was able to find a work around where i use patchelf and it used to work. i generate binary but i dont nix-copy it
aszlig has quit [Quit: Kerneling down for reboot NOW.]
<clever> mishac: you want to edit the nix exprs, so nix does the patchelf for you, and the working binary is in /nix/store/
<mishac> clever but having every single binary in the nix store seems a bit unnecessary
aszlig has joined #nixos
<mishac> clever it would create its own copy in nix store with every minor change in the compiled binary
<mishac> @ so i was using patchelf on binary and then just run it from nfs folder
<mishac> @but now after i installed nix on beaglebone i get a message like this when i run incomplete version of program: libgcc_s.so.1 must be installed for pthread_cancel to workAborted
<mishac> clever so i tried compiling and installing gcc binary
<clever> mishac: it sounds like your just trying to fix nix's help at every step?
<clever> mishac: when you re-build something, and re-copy it with nix-copy-closure, only the derivations that have changed will get copied
<clever> and those changes are generally small
troydm has quit [Ping timeout: 240 seconds]
<mishac> clever I see, interesting
<mishac> clever so lets way i compiled a c package, call it test, i nix-copy closure it to beaglebone
<mishac> clever i need to get its reference if i want to run it
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70570 → debootstrap: 1.0.115 -> 1.0.116 → https://git.io/JeCPb
Rusty1 has quit [Quit: Konversation terminated!]
<clever> mishac: when you tell nix to copy test over, nix already knows what test depends on, and copies them as well
<mishac> clever and then if i want to run test on the beaglebone, i have to get information about it
<clever> nix-build told you what path it just build
<clever> paste that path to nix-copy-closure (or use readlink result), and then use the same path on the beaglebone
<mishac> clever is one workaround is just to install test and then upgrade it each time new version is available
<clever> either directly, /nix/store/hash-test/bin/test
<clever> or install it: nix-env -i /nix/store/hash-test/
<clever> installing is optional, since you can just directly run it from /nix/store
troydm has joined #nixos
<mishac> clever this kind of workflow seemed very unintuitive to me, so i was searching for workarounds. But I see how i can make it work.
<clever> the next logical step, if you want a more interactive workflow, like make && ./test, is to just run `nix-shell` right on the beaglebone
<mishac> clever is there a way to install packages through nix on beaglebone the same way as it is done on x-86 machine. or do i need to compile binaries
<clever> mishac: you can just use nix-build and normal nix-env on the beaglebone too
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
wfranzini has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70571 → pantheon.elementary-wallpapers: 5.3 -> 5.4 → https://git.io/JeCXT
abathur has quit [Ping timeout: 276 seconds]
phreedom has quit [Remote host closed the connection]
phreedom has joined #nixos
gerschtli has quit [Quit: WeeChat 2.4]
gerschtli has joined #nixos
Boomerang has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70572 → drumkv1: 0.9.9 -> 0.9.10 → https://git.io/JeCXL
Boomerang has quit [Ping timeout: 265 seconds]
<mishac> clever I just tried adding and updating your hydra cache for arm-7 and get this error: builder for '/nix/store/3lh17gcw9n26aqcpy0dp2hddk22fj9j5-hydra.drv' failed with exit code 1error: build of '/nix/store/3lh17gcw9n26aqcpy0dp2hddk22fj9j5-hydra.drv' failederror: program
<mishac> '/nix/store/4y8df2vfwhmdh4ik9nhnwj8vg62s8j3d-nix-2.2.2-armv7l-unknown-linux-gnueabihf/bin/nix-env' failed with exit code 100
<mishac> clever is it possible to use your channel?
knupfer has quit [Ping timeout: 264 seconds]
<clever> mishac: how did you add it?
<mishac> clever nix-channel -update
<clever> mishac: ive never used the channels nix provides, i just git clone whatever repo the hydra is following
<clever> the channels hydra provides*
Zer0xp has joined #nixos
<{^_^}> [nixpkgs] @deadloko opened pull request #70573 → qtcreator 4.9.1 -> 4.10.0 → https://git.io/JeCXt
mishac has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @marsam opened pull request #70574 → tengine: 2.3.1 -> 2.3.2 → https://git.io/JeCXc
drakonis has quit [Quit: WeeChat 2.6]
drakonis has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70575 → flacon: 5.4.0 -> 5.5.1 → https://git.io/JeCXi
<{^_^}> [nixpkgs] @workflow opened pull request #70576 → Scylladb: fix build under sandboxing → https://git.io/JeCXM
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70577 → ethtool: 5.2 -> 5.3 → https://git.io/JeCXD
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70578 → python37Packages.foxdot: 0.8.1 -> 0.8.3 → https://git.io/JeCX5
growpotkin has quit [Quit: ZNC 1.7.4 - https://znc.in]
lord| has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @etu merged pull request #70404 → nano: 4.4 -> 4.5 → https://git.io/JecdA
<{^_^}> [nixpkgs] @etu pushed 2 commits to master: https://git.io/JeCXF
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70579 → entr: 4.2 -> 4.3 → https://git.io/JeCXx
gxt has joined #nixos
lovesegfault has joined #nixos
<lovesegfault> Hi everyone
<lovesegfault> I'm trying out NixOS
<lovesegfault> And I have a couple issues, maybe someone can help me out:
<lovesegfault> 1. I can't start an X session because it fails to load the libinput module (even though I have it enabled in my configuration.nix)
<lovesegfault> 2. I can't get weechat (irc) to see any aspell dicts
hyper_ch2 has joined #nixos
palo1 has joined #nixos
<etu> lovesegfault: This is how I made dictionary works for me in weechat: https://github.com/etu/nixconfig/blob/master/modules/my-spell.nix#L12-L33
<etu> I don't think you need both hunspell and aspell. But I use both in different applications and set up both
palo has quit [Ping timeout: 276 seconds]
palo1 is now known as palo
<lovesegfault> etu: Hmm, let's see!
<lovesegfault> etu: Are you swedish?
lovesegfault has quit [Quit: WeeChat 2.6]
lovesegfault has joined #nixos
<lovesegfault> etu: Success!!
hyper_ch2 has quit [Remote host closed the connection]
<etu> lovesegfault: Det är jag :)
bahamas has joined #nixos
<lovesegfault> etu: Asked because of the sv dict :)
<lovesegfault> I used to live with two swedes as housemates
<lovesegfault> (from Jönköping)
<etu> lovesegfault: ah :)
orivej has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #70545 → pythonPackages.awkward: 0.12.6 -> 0.12.12 → https://git.io/JeCKO
<{^_^}> [nixpkgs] @jonringer closed pull request #69791 → python37Packages.awkward: 0.12.6 -> 0.12.10 → https://git.io/JeZ2E
<{^_^}> [nixpkgs] @jonringer pushed commit from @veprbl to master « pythonPackages.awkward: 0.12.6 -> 0.12.12 »: https://git.io/JeC1U
<lovesegfault> I have no clue why libinput won
<lovesegfault> *won't load
<etu> lovesegfault: I assume you enabled the module?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70580 → flexibee: 2019.2.5 -> 2019.3.0.3 → https://git.io/JeC1t
<etu> lovesegfault: services.xserver.libinput.enable = true;
<lovesegfault> Yep
<etu> lovesegfault: I'm not sure what the multitouch option does on a system level, but I think that libinput supports that by default so I don't think you need those options.
<lovesegfault> etu: Nuked it :)
lord| has joined #nixos
hyper_ch2 has joined #nixos
lord| has quit [Read error: Connection reset by peer]
lord| has joined #nixos
lovesegfault has quit [Quit: WeeChat 2.6]
MinceR_ is now known as MinceR
bahamas has quit [Ping timeout: 265 seconds]
hyper_ch2 has quit [Remote host closed the connection]
m0rphism has joined #nixos
niksnut has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @jojosch opened pull request #70581 → dbeaver: 6.2.1 -> 6.2.2 → https://git.io/JeC1E
cfricke has joined #nixos
endformationage has quit [Ping timeout: 265 seconds]
bahamas has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to revert-70546-ghc-patches « Revert "ghc modules: use specific commit to fetch patches (#70546)" »: https://git.io/JeC1z
<{^_^}> [nixpkgs] @peti opened pull request #70582 → Revert "ghc modules: use specific commit to fetch patches" → https://git.io/JeC1r
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @peti merged pull request #70582 → Revert "ghc modules: use specific commit to fetch patches" → https://git.io/JeC1r
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/JeC1o
<lovesegfault> Still have the libinput issue, cc. etu
<{^_^}> [nixpkgs] @peti pushed 0 commits to revert-70546-ghc-patches: https://git.io/JeC1K
jsomedon has joined #nixos
Chiliparrot has joined #nixos
<jsomedon> hi guys, how much memory should I config if I am gonna install nixos on a vm?
hyper_ch2 has joined #nixos
<srhb> jsomedon: I you're going to be building on the VM, at least a few gigs. If you're pushing builds to it, less may suffice.
<jsomedon> by pushing, you mean like, installing package?
<srhb> If you're able to resize it later, probably don't worry too much about it to start out with.
<srhb> jsomedon: Yeah.
<jsomedon> ok thanks!
<jsomedon> is there any plan for nix project on reducing memory consumption in future? my laptop doesn't have that many memory..
niksnut has joined #nixos
<lovesegfault> Apparently setting services.xserver.libinput.enable = true; does not bring in the nixpkgs.xorg.xf86inputlibinput dep
<lovesegfault> Which causes the module to fail to load
wfranzini has joined #nixos
Ariakenom has joined #nixos
michaelpj has quit [Quit: ZNC 1.7.4 - https://znc.in]
<{^_^}> [nixpkgs] @saschagrunert opened pull request #70583 → buildah: 1.11.1 -> 1.11.3 → https://git.io/JeC1M
michaelpj has joined #nixos
bahamas has quit [Ping timeout: 240 seconds]
Heirlung has quit [Quit: ZNC 1.6.5+deb1+deb9u2 - http://znc.in]
jsomedon has quit [Quit: jsomedon]
michaelpj has quit [Client Quit]
joehh has quit [Ping timeout: 265 seconds]
michaelpj has joined #nixos
Jackneill has joined #nixos
Heirlung has joined #nixos
Okinan has quit [Quit: Konversation terminated!]
hyper_ch2 has quit [Remote host closed the connection]
floscr has quit [Remote host closed the connection]
floscr has joined #nixos
<{^_^}> [nixpkgs] @tobim opened pull request #70584 → arrow-cpp: 0.14.1 -> 0.15.0 → https://git.io/JeC1p
gila has joined #nixos
<gila> Hi all, im using bpftrace and want to include a header file (to deref a pointer) but I'm wondring if there is a good way other then finding the include paths by "hand"
<{^_^}> [nixpkgs] @lilyball opened pull request #70585 → bat: update dependencies → https://git.io/JeCMZ
logzet has joined #nixos
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
MarcWeber has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #70167 → protolock: init at 0.14.1 → https://git.io/Jen6n
<{^_^}> [nixpkgs] @jonringer pushed commit from @groodt to master « protolock: init at 0.14.1 »: https://git.io/JeCM4
<{^_^}> [nixpkgs] @jonringer merged pull request #70568 → prettyping: works on unix platforms → https://git.io/JeCPS
<{^_^}> [nixpkgs] @jonringer pushed commit from @sigma to master « prettyping: works on unix platforms »: https://git.io/JeCMB
bahamas has joined #nixos
Astralix9 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70586 → fossil: 2.9 -> 2.10 → https://git.io/JeCME
<{^_^}> [nixpkgs] @bb010g opened pull request #70587 → refind: create refind-full variant w/ proper deps → https://git.io/JeCMz
toppler has quit [Read error: Connection reset by peer]
toppler has joined #nixos
Astralix9 has quit [Ping timeout: 252 seconds]
Astralix9 has joined #nixos
Tucky has joined #nixos
<gila> i.e bpftace script.bt -I /include/paths
Zer0xp has quit [Ping timeout: 240 seconds]
sam_d has quit [Remote host closed the connection]
Okinan has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70588 → gitAndTools.git-remote-hg: 1.0.0 -> 1.0.1 → https://git.io/JeCMD
Boomerang has joined #nixos
Okinan has quit [Client Quit]
mexisme has joined #nixos
jlv has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Izorkin opened pull request #70589 → znc: 1.7.4 -> 1.7.5 → https://git.io/JeCMH
Makaveli7 has joined #nixos
liff has quit [Quit: leaving]
liff has joined #nixos
liff has joined #nixos
<{^_^}> [nixpkgs] @nyanloutre opened pull request #70590 → jellyfin: 10.3.7 -> 10.4.0 → https://git.io/JeCMp
liff has quit [Client Quit]
hyper_ch2 has joined #nixos
<hyper_ch2> this is so true https://xkcd.com/2212/
mexisme has quit [Read error: Connection reset by peer]
mexisme has joined #nixos
liff has joined #nixos
domogled has quit [Quit: domogled]
floscr has quit [Read error: Connection reset by peer]
Boomerang has quit [Remote host closed the connection]
jhuizy has joined #nixos
mexisme has quit [Read error: Connection reset by peer]
mexisme has joined #nixos
civodul has joined #nixos
rople has quit [Ping timeout: 276 seconds]
seanparsons has quit [Quit: ZNC 1.7.3 - https://znc.in]
lovesegfault has quit [Ping timeout: 250 seconds]
iyzsong has joined #nixos
rople has joined #nixos
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @markuskowa merged pull request #70027 → make-disk-image: replace nixos-install by nix-env calls → https://git.io/JeZjp
<{^_^}> [nixpkgs] @markuskowa pushed 2 commits to master: https://git.io/JeCDC
floscr has joined #nixos
<{^_^}> [nixpkgs] @jonringer pushed commit from @geistesk to master « zncModules.fish: fix build »: https://git.io/JeCD8
<{^_^}> [nixpkgs] @jonringer merged pull request #70510 → zncModules.fish: fix build → https://git.io/JeC4w
mexisme has quit [Read error: Connection reset by peer]
mexisme has joined #nixos
pie__ has joined #nixos
thc202 has joined #nixos
wolfshappen has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @jonringer pushed commit from @geistesk to release-19.09 « zncModules.fish: fix build »: https://git.io/JeCDE
pie_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70591 → python37Packages.goobook: 3.3 -> 3.4 → https://git.io/JeCDu
bahamas has quit [Quit: Lost terminal]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70592 → geos: 3.7.2 -> 3.7.3 → https://git.io/JeCDV
mexisme has quit [Read error: Connection reset by peer]
domogled has joined #nixos
mexisme has joined #nixos
Boomerang has joined #nixos
floscr has quit [Remote host closed the connection]
floscr has joined #nixos
floscr_ has joined #nixos
floscr has quit [Read error: Connection reset by peer]
veske has joined #nixos
mexisme has quit [Read error: Connection reset by peer]
mexisme has joined #nixos
Astralix9 has quit [Ping timeout: 252 seconds]
veske has quit [Client Quit]
joshuagl has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #70220 → pythonPackages.cufflinks: 0.15 -> 0.16 → https://git.io/JenbN
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/JeCDh
hmpffff has joined #nixos
<{^_^}> [nixpkgs] @cko opened pull request #70593 → sqlite: 3.28.0 -> 3.30.0, sqlite-analyzer: 3.28.0 -> 3.30.0, resolves #70127 → https://git.io/JeCye
wolfshappen has joined #nixos
wolfshappen has quit [Client Quit]
wolfshappen has joined #nixos
mexisme has quit [Read error: Connection reset by peer]
seanparsons has joined #nixos
mexisme has joined #nixos
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to release-19.09: https://git.io/JeCyq
veske has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70594 → gdcm: 3.0.1 -> 3.0.2 → https://git.io/JeCyY
sigmundv_ has joined #nixos
<{^_^}> [nixpkgs] @7c6f434c merged pull request #70551 → angelscript: 2.33.0 -> 2.34.0 → https://git.io/JeC6l
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JeCys
jhuizy has quit [Ping timeout: 260 seconds]
inkbottle has quit [Ping timeout: 246 seconds]
inkbottle has joined #nixos
mexisme has quit [Read error: Connection reset by peer]
mexisme has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70595 → geoclue2: 2.5.3 -> 2.5.5 → https://git.io/JeCyW
<{^_^}> [nixpkgs] @romildo merged pull request #70513 → ibm-plex: 2.0.0 -> 3.0.0 → https://git.io/JeCBO
<{^_^}> [nixpkgs] @romildo pushed 2 commits to master: https://git.io/JeCyu
nakkle has joined #nixos
mexisme has quit [Read error: Connection reset by peer]
__monty__ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70596 → gnutls: 3.6.9 -> 3.6.10 → https://git.io/JeCyo
wedens has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70597 → geany: 1.35 -> 1.36 → https://git.io/JeCy5
<{^_^}> [nixpkgs] @d-goldin opened pull request #70598 → {v8, v8_6_x}: fix log output exceeded w. GCC8 → https://git.io/JeCyF
cfricke has quit [Quit: WeeChat 2.6]
floscr_ has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70599 → hebcal: 4.18 -> 4.19 → https://git.io/JeCyN
floscr has joined #nixos
asymptotically has joined #nixos
veske has quit [Quit: This computer has gone to sleep]
<{^_^}> [nixpkgs] @lheckemann merged pull request #69302 → networkd: disallow useDHCP → https://git.io/JesiO
<{^_^}> [nixpkgs] @lheckemann pushed 5 commits to master: https://git.io/JeCyA
<wedens> is it possible to somehow use libvirt >= 5.6.0 considering this (https://github.com/NixOS/nixpkgs/pull/66584#issuecomment-524780748) issue?
niksnut has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @lheckemann pushed 3 commits to release-19.09: https://git.io/JeCSI
domogled has quit [Quit: domogled]
<{^_^}> [nixpkgs] @lheckemann closed pull request #70467 → oil: 0.7.pre3 -> 0.7.pre5 → https://git.io/JeCm0
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70600 → gmock: 1.8.1 -> 1.10.0 → https://git.io/JeCSq
fendor has joined #nixos
<{^_^}> [nixpkgs] @etu merged pull request #70590 → jellyfin: 10.3.7 -> 10.4.0 → https://git.io/JeCMp
<{^_^}> [nixpkgs] @etu pushed 2 commits to master: https://git.io/JeCSY
niksnut has joined #nixos
<{^_^}> [nixpkgs] @Mic92 opened pull request #70601 → nixos/zfs: only enable trim if zfs is enabled → https://git.io/JeCSZ
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70602 → gromacs: 2019.3 -> 2019.4 → https://git.io/JeCSc
<{^_^}> [nixpkgs] @Profpatsch merged pull request #70583 → buildah: 1.11.1 -> 1.11.3 → https://git.io/JeC1M
<{^_^}> [nixpkgs] @Profpatsch pushed commit from @saschagrunert to master « buildah: 1.11.1 -> 1.11.3 »: https://git.io/JeCSC
psyanticy has joined #nixos
<{^_^}> [nixpkgs] @lheckemann merged pull request #70382 → Fix dead anonscm links → https://git.io/Jec95
<{^_^}> [nixpkgs] @lheckemann pushed 5 commits to master: https://git.io/JeCS4
drakonis has quit [Quit: WeeChat 2.6]
hyper_ch2 has quit [Remote host closed the connection]
hyper_ch2 has joined #nixos
hyper_ch2 has quit [Remote host closed the connection]
hyper_ch2 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70603 → gtkwave: 3.3.101 -> 3.3.102 → https://git.io/JeCSX
nash8192[m] has joined #nixos
<{^_^}> [nixpkgs] @moaxcp opened pull request #70604 → asciidoctorj init at 2.1.0 → https://git.io/JeCS1
Synthetica has joined #nixos
alex`` has joined #nixos
<{^_^}> [nixpkgs] @lheckemann merged pull request #70531 → oil: enable readline → https://git.io/JeCup
<{^_^}> [nixpkgs] @lheckemann pushed 3 commits to master: https://git.io/JeCSQ
Astralix9 has joined #nixos
astrall33 has joined #nixos
l33_ has joined #nixos
lovesegfault has quit [Ping timeout: 264 seconds]
Astralix9 has quit [Ping timeout: 252 seconds]
boolman has joined #nixos
<{^_^}> [nixpkgs] @santiagoalvarez opened pull request #70606 → tbb: adds better CMake support → https://git.io/JeC9k
jboy has quit [Quit: bye]
jboy has joined #nixos
alex`` has quit [Ping timeout: 245 seconds]
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
<{^_^}> [nixpkgs] @santiagoalvarez opened pull request #70607 → mantainer: add santiagoalvarez → https://git.io/JeC9t
alex`` has joined #nixos
<{^_^}> [nix] @samdoshi opened pull request #3120 → nix search: remove verbose example → https://git.io/JeC9G
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/1cb925e8a1f (from 70 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/1cb925e8a1f (from 71 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
<misuzu> i'm trying to build arm7l image and getting this error
alex`` has quit [Ping timeout: 268 seconds]
<misuzu> error: moving build output '/nix/store/b1i5wggyvayw8cllwzfbg722j3czfxax-documentation-highlighter' from the sandbox to the Nix store: Permission denied
<misuzu> how to fix this?
<evanjs> Well, it's been a few days, now. pretty sure gdm.autoSuspend was the cause. No shutdowns on either of my desktops since then. Would be nice if it was configurable, though :P
<evanjs> Or at least woke on PCIe or SSH...
alex`` has joined #nixos
Uma has joined #nixos
Ariakenom_ has joined #nixos
Ariakenom has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70608 → intel-media-sdk: 19.1.0 -> 19.2.1 → https://git.io/JeC9B
nexgen has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @aanderse merged pull request #70581 → dbeaver: 6.2.1 -> 6.2.2 → https://git.io/JeC1E
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/JeC9R
veske has joined #nixos
<{^_^}> [nixpkgs] @Thesola10 opened pull request #70609 → criterion: init at version 2.3.3 → https://git.io/JeC9z
<{^_^}> [nixpkgs] @raboof opened pull request #70610 → Prepare for Notion 4 → https://git.io/JeC92
<{^_^}> [nixpkgs] @Synthetica9 opened pull request #70611 → sakura: 3.6.0 -> 3.7.0 → https://git.io/JeC9a
fendor has quit [Quit: Leaving]
Ariakenom_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70612 → jgmenu: 3.3 -> 3.4 → https://git.io/JeC9r
Ariakenom_ has joined #nixos
<boolman> anyone using terragrunt?
<{^_^}> [nixpkgs] @primeos merged pull request #70591 → python37Packages.goobook: 3.3 -> 3.4 → https://git.io/JeCDu
<{^_^}> [nixpkgs] @primeos pushed 2 commits to master: https://git.io/JeC9o
<{^_^}> [nixpkgs] @Synthetica9 opened pull request #70613 → whois: 5.5.1 -> 5.5.2 → https://git.io/JeC9K
<{^_^}> [nixpkgs] @Taneb opened pull request #70614 → intecture-cli: use openssl 1.0.2 → https://git.io/JeC9M
<{^_^}> [nixpkgs] @edolstra merged pull request #70317 → Revert "perl-modules: do not create perllocal.pod, for determinism" → https://git.io/Jec4x
<{^_^}> [nixpkgs] @edolstra pushed 2 commits to staging: https://git.io/JeC97
Ariakenom__ has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e831ebce938 (from 76 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
Ariakenom__ is now known as Ariakenom
Ariakenom_ has quit [Ping timeout: 245 seconds]
rople has quit [Ping timeout: 240 seconds]
nexgen has joined #nixos
nexgen has quit [Remote host closed the connection]
nexgen has joined #nixos
multun has quit [Write error: Connection reset by peer]
multun has joined #nixos
astrall33 has quit [Remote host closed the connection]
l33_ has quit [Remote host closed the connection]
<Uma> I have a GPT with a fat32 partition with the boot flag set, yet GRUB complains it contains "no BIOS Boot Partition", how should I debug this?
<{^_^}> [nixpkgs] @novoxudonoser opened pull request #70615 → act: add → https://git.io/JeCHv
<etu> Uma: Is it mounted?
<Uma> Yes
<Uma> Just to make sure, if the boot partition is in, say /dev/sda3, I need to install GRUB on /dev/sda, right?
<etu> Nope, that's how one did it with MBR
<Uma> Oh!
<etu> With MBR the bootloader was more part of the partition table
<etu> Now the EFI looks for EFI partitions on all the drives and reads the files from there
<Uma> So I should install GRUB on /dev/sda3?
<etu> If that is your EFI partition sure
<etu> But usually I don't think you need to specify that
<etu> for grub
<etu> Checking my system that uses grub
<Uma> Cheers
<etu> Uma: device seems to be "none" there :)
<Uma> Oh!
o1lo01ol1o has quit [Remote host closed the connection]
<Uma> Ok, I should learn about GRUB and GPTs
<etu> Uma: And yeah, it depends on you having the EFI partition mounted in the right place
<etu> Uma: I usually mount it directly on /boot, works fine :)
<Uma> nixos-install complained whenever that option was left out, so I assumed it was necessary for grub-install
<Uma> (to define a partition to install GRUB on, I mean)
<Uma> Thanks etu!
<{^_^}> [nixpkgs] @NobbZ opened pull request #70616 → exercism: 3.0.11 -> 3.0.12 → https://git.io/JeCHO
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70617 → kodelife: 0.8.3.93 -> 0.8.5.99 → https://git.io/JeCHG
floscr has quit [Remote host closed the connection]
floscr has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
floscr has quit [Remote host closed the connection]
floscr has joined #nixos
<{^_^}> [nixpkgs] @romildo merged pull request #70612 → jgmenu: 3.3 -> 3.4 → https://git.io/JeC9r
<{^_^}> [nixpkgs] @romildo pushed 2 commits to master: https://git.io/JeCHu
<{^_^}> [nixpkgs] @lheckemann opened pull request #70618 → linuxPackages.virtualBoxGuestAdditions: fix build → https://git.io/JeCHa
hmpffff has quit [Quit: nchrrrr…]
Rusty1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70620 → jitterentropy: 2.1.2 -> 2.2.0 → https://git.io/JeCH7
fendor has joined #nixos
<ij> boolman, probably someone is. why? you can get close to terragrunt by leveraging nixpkgs
<{^_^}> [nixpkgs] @peti pushed 4 commits to haskell-updates: https://git.io/JeCQe
<raboof> what would be the way to configure applications to start when I log into X? like the panel and nm-applet? XDG Autostart sounds like it's fit, how would I configure that on NixOS?
<boolman> ij: I'm asking because Im having issues with it, something I can't reproduce on my ubuntu machine
<{^_^}> [nix] @edolstra pushed to flakes « Add a "dev" output to the 'nix' package »: https://git.io/JeCQk
<makefu> raboof: for users, you could use 'home-manager', or simply copy-paste what home-manager is doing to enable nm-applet: https://github.com/rycee/home-manager/blob/master/modules/services/network-manager-applet.nix#blob-path
<makefu> alternatively you could check how your window manager is starting stuff at login
<{^_^}> [nixpkgs] @peti merged pull request #70152 → haskellPackages.proteaaudio: link with the AudioToolbox framework on Darwin → https://git.io/JenaL
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/JeCQq
<{^_^}> [nix] @edolstra merged pull request #3120 → nix search: remove verbose example → https://git.io/JeC9G
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JeCQm
<raboof> it doesn't really have anything for that, and if we have good options on how to solve that outside the wm I'd prefer that ;)
<hyperfekt> boolman: you could probably replace terragrunt with terranix
<raboof> this is a single-user laptop, so I don't really have a preference between system-wide or per-user configuration
<hyperfekt> at least if i understood what terragrunt does correctly
astrall33 has joined #nixos
<manveru> so, i'm trying to get a key mapped that currently doesn't trigger any KeyPress event in `xev`... `showkey` tells me it has keycode 94, and then I map it using `xmodmap -e "keycode 94 = Muhenkan", but it still doesn't show up (i only get KeymapNotify event with `keys: 4294967277`), any idea what might be going on there?
doublex has quit [Ping timeout: 265 seconds]
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @markuskowa merged pull request #70602 → gromacs: 2019.3 -> 2019.4 → https://git.io/JeCSc
<{^_^}> [nixpkgs] @markuskowa pushed 3 commits to master: https://git.io/JeCQO
astrall33 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JeCQs
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
doublex has joined #nixos
waleee-cl has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #70617 → kodelife: 0.8.3.93 -> 0.8.5.99 → https://git.io/JeCHG
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JeCQW
<niso> does nixops automatically add port 22 to networking.firewall.allowedTCPPorts?
<{^_^}> [nixpkgs] @peti pushed 10 commits to haskell-updates: https://git.io/JeCQ0
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70622 → languagetool: 4.6 -> 4.7 → https://git.io/JeCQE
<manveru> ah, figured it out, i had it mapped in i3 ages ago...
<{^_^}> [nixpkgs] @vcunat pushed to master « knot-resolver: 4.2.1 -> 4.2.2 (tiny bugfix) »: https://git.io/JeCQu
knupfer has joined #nixos
<manveru> niso: given that it enables ssh, and ssh adds it to ports automatically, i'd say yes
<{^_^}> [nixpkgs] @vcunat pushed to release-19.09 « knot-resolver: 4.2.1 -> 4.2.2 (tiny bugfix) »: https://git.io/JeCQa
<{^_^}> [nixpkgs] @ryanfitzsimon opened pull request #70623 → packer: 1.4.1 -> 1.4.4 → https://git.io/JeCQw
Soo_Slow has joined #nixos
floscr has quit [Remote host closed the connection]
xkapastel has joined #nixos
<niso> manveru: fair point
philr has quit [Ping timeout: 240 seconds]
kleisli has joined #nixos
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
<inkbottle> I've added kdeApplications.kdegraphics-thumbnailers in configuration.nix; I've got jpg preview in Dolphin, but still no *pdf* preview. What step could I take?
<{^_^}> [nixpkgs] @flokli closed pull request #24499 → systemd: TPM and debug shell → https://git.io/vScaA
Makaveli7 has quit [Quit: WeeChat 2.6]
nexgen has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Synthetica9 opened pull request #70625 → entr: 4.2 -> 4.3 → https://git.io/JeC73
Makaveli7 has joined #nixos
<{^_^}> [nixpkgs] @Twey opened pull request #70626 → glfw: 3.2.1 -> 3.3 → https://git.io/JeC7s
<inkbottle> why does nix search okular return 2 different answers?
<inkbottle> nixpkgs.kdeApplications.okular and nixpkgs.okular
floscr has joined #nixos
gila has joined #nixos
<etu> inkbottle: Because we "inherit" certain applications from pkgs.kdeApplications to pkgs. Probably because they are commonly used among non-kde users etc.
<inkbottle> OK, thanks
<etu> inkbottle: So it's the same derivation with the same build instructions. It's just more "exposed" or something...
knupfer has quit [Ping timeout: 252 seconds]
<inkbottle> etu: btw, you wouldn't have any clue about why I do not have pdf preview in Dolphin?
<etu> inkbottle: No idea, I'm not a user of those programs :/
<zfnmxt> I'm trying to get an old GHC version via NUR + an overlay, but get this error: https://gist.github.com/zfnmxt/4560a373fca4bfb82ad9abb6d375779d
<inkbottle> etu: tx
<zfnmxt> Admittedly, I basically have no idea what I'm doing.
<inkbottle> etu: Do you use some other desktop, or you have a completly different way? (new to nixos and trying to have things working)
nexgen has joined #nixos
<etu> inkbottle: I'm one of the dozens of EXWM (Emacs X11 Window Manager) users... :)
<inkbottle> etu: nice. You wouldn't happen to use HIE with emacs? (haskell ide engine)
<adisbladis> inkbottle: Dolphin (and all qt/kde apps) does a lot of runtime magic, it's likely you're missing some .so in your env
astrall33 has joined #nixos
iyzsong has quit [Quit: ZNC 1.7.1 - https://znc.in]
alex``` has joined #nixos
<inkbottle> adisbladis: do you mean that the trick of "runtime dependencies are found by scanning binaries" could be not working there?
veske has quit [Quit: This computer has gone to sleep]
<inkbottle> adisbladis: How could I find which .so I'm missing?
alex`` has quit [Ping timeout: 246 seconds]
<adisbladis> inkbottle: I'm just speculating based on similar experiences with dolphin and kdeconnect
cswl has joined #nixos
<adisbladis> inkbottle: But my guess would be to pull down okular
selfsymmetric-pa has joined #nixos
cracovia has joined #nixos
<inkbottle> adisbladis: "pull down"?
<{^_^}> [nixpkgs] @vcunat pushed commit from @lheckemann to release-19.03 « linuxPackages.virtualBoxGuestAdditions: fix build »: https://git.io/JeC7V
<adisbladis> inkbottle: I add to your system packages.
<Ariakenom> I'm building with cabal and it complains about zlib.h. I tried just "nix-env -iA nixos.zlib" but it didnt help.
<{^_^}> [nixpkgs] @peterhoeg merged pull request #69712 → anydesk: 4.0.1 -> 5.1.2 → https://git.io/JeZBZ
<{^_^}> [nixpkgs] @peterhoeg pushed 3 commits to master: https://git.io/JeC7w
<{^_^}> [nixpkgs] @woffs opened pull request #70627 → git-annex-utils: init at 0.04-3-g531bb33 → https://git.io/JeC7r
<inkbottle> adisbladis: I already have okular in environment.systemPackages
astrall33 has quit [Remote host closed the connection]
kleisli has quit [Remote host closed the connection]
astrall33 has joined #nixos
veske has joined #nixos
<{^_^}> [nixpkgs] @wizeman opened pull request #70628 → sysstat: fix source url → https://git.io/JeC7K
<dminuoso> I use nixops with a nix-shell. What's a simple way to avoid accidents that I dont accidentally run nixops outside my nix-shell?
<dminuoso> (Reason is I use nix-shell to pin nixpkgs)
<{^_^}> [nixpkgs] @maggesi opened pull request #70629 → elpi: 1.6.0 -> 1.7.0 → https://git.io/JeC7D
ddellacosta has joined #nixos
<immae> dminuoso: the way I ensure this kind of thing is setting an environment variable critical for nixops, like NIXOPS_STATE, to a non-default value. This way, if I run nixops without that variable, I’ll end with a garbage state containing nothing
<immae> (in my case, I want to "enforce" running it via Makefile, which sets other things, but via nix-shell the idea is the same)
<{^_^}> [nixpkgs] @maggesi pushed 2 commits to master: https://git.io/JeC77
<{^_^}> [nixpkgs] @maggesi merged pull request #70629 → elpi: 1.6.0 -> 1.7.0 → https://git.io/JeC7D
<dminuoso> immae: Do I even have access to environment variables from nix
<immae> from nix-shell yes
<immae> put them in shellHook
<dminuoso> I dont have derivations here, its a nixos configuration.nix
<gchristensen> dminuoso: one way is to create a second nixops network, so that NIXOPS_DEPLOYMENT is set
civodul has joined #nixos
<dminuoso> gchristensen: What do you mean by "nixops network"?
<gchristensen> `nixops create` creates a "network"
<gchristensen> err maybe I should call it a deployment :)
<dminuoso> gchristensen: Ah that explains my confusion. :)
<dminuoso> gchristensen: Can you elaborate on how that would address the issue? Im not seeing it.
<gchristensen> sure
<gchristensen> $ nixops deploy
gentauro has quit [Read error: Connection reset by peer]
<gchristensen> Exception: state file contains multiple deployments, so you should specify which one to use using ‘-d’, or set the environment variable NIXOPS_DEPLOYMENT
gentauro has joined #nixos
<dminuoso> gchristensen: And how does that force me to use `nix-shell` exactly?
<gchristensen> well, you can have the nix-shell set that variable
<gchristensen> and so the solution to that error is "enter the nix shell"
<dminuoso> gchristensen: Well that would work only if you have a single canonical deployment you ever talk aobut.
<dminuoso> I already have multiple deployments.
<gchristensen> sorry, there are probably other ways too, but I'm half thinking about it as I'm on a call too. sorry, I can try to help more later
<dminuoso> gchristensen: Thank you for the idea though, Ill think about whether I can utilize it.
<dminuoso> Though... huh. It's actually perfectly suitable - I just have to split off my deployments to use different nix-shell.
<dminuoso> gchristensen: Yes that seems like it would work like a charm!
<gchristensen> cool!
<hyper_ch2> eyJhb: online?
hmpffff has joined #nixos
<{^_^}> [nix] @edolstra pushed to flakes « fetchGit: Support Git trees without any commits »: https://git.io/JeC53
Makaveli7 has quit [Quit: WeeChat 2.6]
hmpffff has quit [Client Quit]
nash8192[m] has quit [Remote host closed the connection]
aanderse has quit [Remote host closed the connection]
vxzero[m] has quit [Remote host closed the connection]
sierraDelta has quit [Remote host closed the connection]
badmutex[m] has quit [Remote host closed the connection]
red[m] has quit [Remote host closed the connection]
sputny[m] has quit [Remote host closed the connection]
tobim[m] has quit [Remote host closed the connection]
groggy[m] has quit [Remote host closed the connection]
hackeryarn[m] has quit [Remote host closed the connection]
peterhoeg[m] has quit [Remote host closed the connection]
ZD[m] has quit [Remote host closed the connection]
jwaksbaum[m] has quit [Remote host closed the connection]
Woland[m] has quit [Remote host closed the connection]
Sascha[m]3 has quit [Remote host closed the connection]
aquarial has quit [Read error: Connection reset by peer]
divansantana has quit [Read error: Connection reset by peer]
laas has quit [Remote host closed the connection]
frederic_chopwn[ has quit [Read error: Connection reset by peer]
ndarwincorn has quit [Read error: Connection reset by peer]
alxev[m] has quit [Read error: Connection reset by peer]
ninjatrappeur[m] has quit [Read error: Connection reset by peer]
Sisyphe[m] has quit [Remote host closed the connection]
bohan[m] has quit [Read error: Connection reset by peer]
wak-work has quit [Read error: Connection reset by peer]
ilya-fedin has quit [Read error: Connection reset by peer]
zmlww[m] has quit [Write error: Connection reset by peer]
zmlww[m]1 has quit [Write error: Connection reset by peer]
Vskilet has quit [Remote host closed the connection]
Dandellion[m] has quit [Read error: Connection reset by peer]
abbradar[m] has quit [Read error: Connection reset by peer]
jak_wolf[m] has quit [Read error: Connection reset by peer]
sauyon[m] has quit [Read error: Connection reset by peer]
Moredread[m] has quit [Read error: Connection reset by peer]
KarelWDingeldey[ has quit [Remote host closed the connection]
haslersn[m] has quit [Remote host closed the connection]
tonic0x539[m] has quit [Remote host closed the connection]
provessor[m] has quit [Read error: Connection reset by peer]
kxlljoyy[m] has quit [Remote host closed the connection]
hiroshi[m] has quit [Write error: Connection reset by peer]
wangoe[m] has quit [Remote host closed the connection]
sm[m] has quit [Write error: Connection reset by peer]
roadt[m] has quit [Write error: Connection reset by peer]
domenkozar[m] has quit [Read error: Connection reset by peer]
ronny has quit [Write error: Connection reset by peer]
M0ddba11[m] has quit [Read error: Connection reset by peer]
bnasty[m] has quit [Write error: Connection reset by peer]
BinkyTheClown has quit [Write error: Connection reset by peer]
RobinKroonen[m] has quit [Write error: Connection reset by peer]
marius851000[m] has quit [Remote host closed the connection]
sevcsik[m] has quit [Write error: Connection reset by peer]
Guest97061 has quit [Write error: Connection reset by peer]
dominicusin[m] has quit [Write error: Connection reset by peer]
craigevil[m] has quit [Write error: Connection reset by peer]
jak[m] has quit [Write error: Connection reset by peer]
slabity has quit [Read error: Connection reset by peer]
timokau[m] has quit [Write error: Connection reset by peer]
mildred has quit [Write error: Connection reset by peer]
orospakr[m] has quit [Remote host closed the connection]
NfixEstrada[m] has quit [Remote host closed the connection]
arianvp[m] has quit [Read error: Connection reset by peer]
bkchr has quit [Remote host closed the connection]
gudea[m] has quit [Remote host closed the connection]
Gopal[m] has quit [Remote host closed the connection]
sylvie[m] has quit [Read error: Connection reset by peer]
steshaw[m] has quit [Read error: Connection reset by peer]
yangm has quit [Read error: Connection reset by peer]
atopuzov[m] has quit [Write error: Connection reset by peer]
mirsal has quit [Read error: Connection reset by peer]
tyrion-mx has quit [Read error: Connection reset by peer]
Minijackson[m] has quit [Read error: Connection reset by peer]
blitzclone_ has quit [Read error: Connection reset by peer]
codyopel has quit [Read error: Connection reset by peer]
alexarice[m] has quit [Read error: Connection reset by peer]
contrun[m] has quit [Read error: Connection reset by peer]
frislie[m] has quit [Read error: Connection reset by peer]
arcnmx has quit [Read error: Connection reset by peer]
otini has quit [Read error: Connection reset by peer]
sphalerit has quit [Read error: Connection reset by peer]
bennofs[m] has quit [Read error: Connection reset by peer]
anton-latukha[m] has quit [Read error: Connection reset by peer]
boredom101[m]1 has quit [Read error: Connection reset by peer]
layus[m] has quit [Read error: Connection reset by peer]
Diamaths[m] has quit [Read error: Connection reset by peer]
jschievink has quit [Read error: Connection reset by peer]
kraem[m] has quit [Remote host closed the connection]
y0x3y[m] has quit [Remote host closed the connection]
Brio[m] has quit [Remote host closed the connection]
balsoft[m] has quit [Read error: Connection reset by peer]
HappyEnt[m] has quit [Remote host closed the connection]
jonreeve[m] has quit [Remote host closed the connection]
gspia[m] has quit [Remote host closed the connection]
tindvik[m] has quit [Remote host closed the connection]
Yakulu[m] has quit [Write error: Connection reset by peer]
Ox4A6F has quit [Remote host closed the connection]
jonge[m] has quit [Write error: Connection reset by peer]
siraben has quit [Write error: Connection reset by peer]
icetan has quit [Write error: Connection reset by peer]
ajirx[m] has quit [Read error: Connection reset by peer]
Ericson2314 has quit [Write error: Connection reset by peer]
bkl[m] has quit [Write error: Connection reset by peer]
fulgjon has quit [Write error: Connection reset by peer]
nh2[m] has quit [Write error: Connection reset by peer]
xavierm02 has quit [Write error: Broken pipe]
tails[m] has quit [Write error: Connection reset by peer]
Victor[m]2 has quit [Write error: Connection reset by peer]
balsoft has quit [Write error: Connection reset by peer]
IslandUsurper has quit [Write error: Connection reset by peer]
Nyanloutre[m] has quit [Write error: Connection reset by peer]
wrunt[m] has quit [Write error: Connection reset by peer]
v0id72[m] has quit [Remote host closed the connection]
kyleondy[m] has quit [Remote host closed the connection]
sonercirit[m] has quit [Remote host closed the connection]
klbrn[m] has quit [Remote host closed the connection]
isgy[m] has quit [Remote host closed the connection]
luftmensch[m] has quit [Read error: Connection reset by peer]
clacke[m] has quit [Remote host closed the connection]
neonfuz2 has quit [Read error: Connection reset by peer]
elais[m] has quit [Read error: Connection reset by peer]
regnat[m] has quit [Read error: Connection reset by peer]
malteof[m] has quit [Remote host closed the connection]
Noughtmare[m] has quit [Read error: Connection reset by peer]
zurdo has quit [Read error: Connection reset by peer]
florianjacob has quit [Read error: Connection reset by peer]
tokudan[m] has quit [Read error: Connection reset by peer]
LinuXit has quit [Remote host closed the connection]
attente[m] has quit [Remote host closed the connection]
escaP[m] has quit [Read error: Connection reset by peer]
vvbb[m] has quit [Read error: Connection reset by peer]
Seb[m] has quit [Read error: Connection reset by peer]
ptival[m] has quit [Read error: Connection reset by peer]
yoho[m]1 has quit [Read error: Connection reset by peer]
cgm[m] has quit [Read error: Connection reset by peer]
vaibhavsagar has quit [Remote host closed the connection]
bachp has quit [Remote host closed the connection]
schmittlauch[m] has quit [Read error: Connection reset by peer]
peel1 has quit [Read error: Connection reset by peer]
fgaz has quit [Read error: Connection reset by peer]
srid[m] has quit [Read error: Connection reset by peer]
TheSirC[m] has quit [Read error: Connection reset by peer]
alienpirate5 has quit [Read error: Connection reset by peer]
dtz has quit [Read error: Connection reset by peer]
bricewge has quit [Read error: Connection reset by peer]
worldofpeace has quit [Read error: Connection reset by peer]
ck3d[m] has quit [Read error: Connection reset by peer]
weebull[m] has quit [Read error: Connection reset by peer]
am3on[m] has quit [Read error: Connection reset by peer]
tejok[m] has quit [Write error: Connection reset by peer]
Thinkofname[m] has quit [Read error: Connection reset by peer]
RIOTIM[m] has quit [Read error: Connection reset by peer]
roberth has quit [Read error: Connection reset by peer]
b-m-f[m] has quit [Read error: Connection reset by peer]
arturo[m] has quit [Read error: Connection reset by peer]
cornu has quit [Read error: Connection reset by peer]
MiloIgnis[m] has quit [Read error: Connection reset by peer]
vdot0x23[m] has quit [Read error: Connection reset by peer]
freddie_freeload has quit [Read error: Connection reset by peer]
pop[m]1 has quit [Remote host closed the connection]
syntaxtree[m] has quit [Remote host closed the connection]
xbreak[m] has quit [Remote host closed the connection]
l33[m] has quit [Remote host closed the connection]
ctrl_shift_smtng has quit [Remote host closed the connection]
Fabian[m]3 has quit [Remote host closed the connection]
grahamc[m] has quit [Remote host closed the connection]
dnixty[m] has quit [Remote host closed the connection]
macerbi[m] has quit [Remote host closed the connection]
corpix[m] has quit [Read error: Connection reset by peer]
spacekitteh[m] has quit [Remote host closed the connection]
das-g[m] has quit [Read error: Connection reset by peer]
coniferous-cube[ has quit [Read error: Connection reset by peer]
ptotter[m] has quit [Read error: Connection reset by peer]
hr[m] has quit [Read error: Connection reset by peer]
bendlas has quit [Read error: Connection reset by peer]
hpfr[m] has quit [Write error: Connection reset by peer]
is0x3F has quit [Read error: Connection reset by peer]
midi[m] has quit [Read error: Connection reset by peer]
fidgetspinoza[m] has quit [Read error: Connection reset by peer]
olejorgenb[m] has quit [Read error: Connection reset by peer]
copy` has quit [Read error: Connection reset by peer]
Lisanna[m] has quit [Read error: Connection reset by peer]
EuAndreh[m] has quit [Read error: Connection reset by peer]
<gchristensen> ow
flip[m]1 has quit [Read error: Connection reset by peer]
fasd has quit [Read error: Connection reset by peer]
Shyim[m] has quit [Remote host closed the connection]
nobbo[m] has quit [Remote host closed the connection]
info_supplicant[ has quit [Remote host closed the connection]
cab404[m] has quit [Remote host closed the connection]
schmittlauch[m]1 has quit [Remote host closed the connection]
smolboye[m] has quit [Remote host closed the connection]
seekerus3r[m] has quit [Remote host closed the connection]
stites[m] has quit [Remote host closed the connection]
bee[m]1 has quit [Read error: Connection reset by peer]
thequux[m] has quit [Read error: Connection reset by peer]
goibhniu has quit [Read error: Connection reset by peer]
MilkManzJourDadd has quit [Read error: Connection reset by peer]
rihardsk[m] has quit [Read error: Connection reset by peer]
joelpet1 has quit [Write error: Connection reset by peer]
tyx2q[m] has quit [Read error: Connection reset by peer]
quiet_laika[m] has quit [Write error: Connection reset by peer]
aymenstudios[m] has quit [Read error: Connection reset by peer]
jersey[m] has quit [Read error: Connection reset by peer]
ma27[m] has quit [Read error: Connection reset by peer]
alex[m]18 has quit [Write error: Connection reset by peer]
DanP[m] has quit [Read error: Connection reset by peer]
aterius has quit [Write error: Connection reset by peer]
craige[m] has quit [Read error: Connection reset by peer]
clefru has quit [Write error: Connection reset by peer]
jtojnar has quit [Write error: Connection reset by peer]
ejpcmac has quit [Read error: Connection reset by peer]
JaakkoLuttinen[m has quit [Read error: Connection reset by peer]
chuzz_ has quit [Read error: Connection reset by peer]
musicmatze has quit [Read error: Connection reset by peer]
truby has quit [Read error: Connection reset by peer]
imj[m] has quit [Read error: Connection reset by peer]
abbec has quit [Read error: Connection reset by peer]
philipp[m] has quit [Write error: Connection reset by peer]
iceychris[m] has quit [Read error: Connection reset by peer]
simbergm has quit [Read error: Connection reset by peer]
haslersn has quit [Read error: Connection reset by peer]
Smith[m] has quit [Write error: Connection reset by peer]
dwagenk has quit [Read error: Connection reset by peer]
nocent has quit [Write error: Connection reset by peer]
thefloweringash has quit [Write error: Connection reset by peer]
manveru[m] has quit [Read error: Connection reset by peer]
harkenedraven has quit [Write error: Connection reset by peer]
alexoundos[m] has quit [Read error: Connection reset by peer]
matthewbauer has quit [Read error: Connection reset by peer]
li_matrix has quit [Write error: Connection reset by peer]
Guest80363 has quit [Write error: Connection reset by peer]
NickHu has quit [Read error: Connection reset by peer]
danielrf[m] has quit [Read error: Connection reset by peer]
pingveno[m] has quit [Read error: Connection reset by peer]
pachacuti[m] has quit [Read error: Connection reset by peer]
kaychaks[m] has quit [Read error: Connection reset by peer]
eqyiel has quit [Read error: Connection reset by peer]
snupples[m] has quit [Write error: Connection reset by peer]
<{^_^}> [nixpkgs] @lheckemann opened pull request #70630 → 19.09 notes: document timesyncd issue → https://git.io/JeC5l
momack2[m] has quit [Read error: Connection reset by peer]
white_bluff[m] has quit [Read error: Connection reset by peer]
wildtrees[m] has quit [Remote host closed the connection]
mariusz-kowalski has quit [Remote host closed the connection]
infinisil-m has quit [Remote host closed the connection]
Dan[m]8 has quit [Remote host closed the connection]
hienergy[m] has quit [Remote host closed the connection]
Christian[m]4 has quit [Remote host closed the connection]
MerlinGttlinger[ has quit [Write error: Connection reset by peer]
Bruno[m] has quit [Remote host closed the connection]
grim_reaper[m] has quit [Remote host closed the connection]
VaNilLa[m] has quit [Write error: Connection reset by peer]
GerdFlaig[m] has quit [Write error: Connection reset by peer]
MayeulC_backup has quit [Write error: Connection reset by peer]
bpye has quit [Remote host closed the connection]
Tony[m]3 has quit [Remote host closed the connection]
TravisRt2botio[m has quit [Write error: Connection reset by peer]
Notkea[m] has quit [Remote host closed the connection]
ArtemVorotnikov[ has quit [Read error: Connection reset by peer]
rycee has quit [Remote host closed the connection]
pinage404[m] has quit [Write error: Connection reset by peer]
eddyb has quit [Write error: Connection reset by peer]
joepie91[m] has quit [Write error: Connection reset by peer]
MichaelEden[m] has quit [Write error: Connection reset by peer]
cyberwolf[m] has quit [Write error: Connection reset by peer]
KodiakIT[m] has quit [Write error: Connection reset by peer]
MarkOtaris has quit [Remote host closed the connection]
zaphar_ps[m] has quit [Write error: Connection reset by peer]
bikki[m] has quit [Write error: Connection reset by peer]
nilsirl[m] has quit [Remote host closed the connection]
rnhmjoj has quit [Remote host closed the connection]
submoo[m] has quit [Remote host closed the connection]
colemickens has quit [Write error: Broken pipe]
tsrt^ has quit [Max SendQ exceeded]
offlinehacker has quit [Write error: Broken pipe]
alj[m] has quit [Write error: Broken pipe]
abbafei[m] has quit [Write error: Broken pipe]
Mateon1 has quit [Remote host closed the connection]
Mateon1 has joined #nixos
<Ariakenom> Are there no -dev packages for some rougish development? I tried adding nix-env zlib as a dependency for a haskell package.
Twey has quit [Ping timeout: 240 seconds]
<waleee-cl> Ariakenom: nix-shell -p zlib will give you a shell were the zlib headers are visible
<infinisil> Ariakenom: "rougish"? You tried adding "nix-env zlib" as a dependency? Not really getting the question
tsrt^ has joined #nixos
LnL has quit [Ping timeout: 240 seconds]
<Ariakenom> I meant globally adding via nix-env -e nixos.zlib
tsrt^ has quit [Excess Flood]
tsrt^ has joined #nixos
<infinisil> ,libraries Ariakenom
<{^_^}> Ariakenom: Don't install libraries through nix-env or systemPackages, use nix-shell instead. See https://nixos.wiki/wiki/FAQ/Libraries for details.
hmpffff has joined #nixos
LnL has joined #nixos
LnL has joined #nixos
LnL has quit [Changing host]
Twey has joined #nixos
<wedens> `network.enableIPv6 = false` doesn't seem to disable it for all interfaces. is it some known issue?
<wedens> I use networkd and NM
<Ariakenom> thanks. I will do it the proper way
<fpletz> wedens: networkd shouldn't touch the related sysctl but NM might? not using it though
<fpletz> wedens: which interfaces? those managed by networkd or by NM? or neither?
astrall33 has quit [Remote host closed the connection]
alex``` has quit [Ping timeout: 276 seconds]
hmpffff has quit [Quit: nchrrrr…]
cracovia has left #nixos [#nixos]
<wedens> fpletz: I think it's only interfaces managed by NM
<{^_^}> [nixpkgs] @disassembler opened pull request #70632 → Release 19.09 doc updates → https://git.io/JeC5w
<wedens> sysctl shows that ipv6 enabled specifically for those interfaces
alex``` has joined #nixos
<fpletz> to be sure, networkctl should show unmanaged for those interfaces
noudle has joined #nixos
<wedens> it shows "configured"
<Baughn> There's /run/booted-system and /run/current-system, but is there an equivalent for will-be-booted-next-time?
<infinisil> Baughn: What will be booted depends on what you select in your bootloader right?
<Baughn> Sure, but there's a default.
<Baughn> I suppose I can scrape grub.cfg, but that feels fragile.
<fpletz> Baughn: yeah, /nix/var/nix/profiles/system
<infinisil> fpletz: Doesn't have to be if the grup updater was never called
<fpletz> infinisil: yup
<infinisil> Like with `nixos-rebuild test`
<Baughn> fpletz: That will be updated by `nixos-rebuild boot`?
<fpletz> a "resonable" default :)
<infinisil> Baughn: What do you need this for?
<fpletz> Baughn: iirc yes, but infinisil might know the code by heart :)
endformationage has joined #nixos
<infinisil> Hehe not entirely
<Baughn> infinisil: Teaching my update script to let me know if there's a kernel update. Which is most applicable to `switch`, to be sure, but I'd prefer generic code.
<infinisil> Baughn: Ah, how about comparing the kernel from /run/booted-system with /run/current-system
<{^_^}> [nixpkgs] @toonn opened pull request #70634 → wire-desktop: mac 3.10.3133 -> 3.10.3215 → https://git.io/JeC5M
<infinisil> I guess same problem
risson has quit [Quit: Pouet. WeeChat 2.4]
<Baughn> That's what I'm currently doing, but it has no effect with `boot`.
<infinisil> Yeah hmm
<Baughn> I suppose I can do a preflight `nix build`.
<Baughn> (Honestly, this seems like something the rebuild script should do for us. `nixos-rebuild switch` already tells us if there are services it can't restart, so logically that should include the kernel.)
<infinisil> Maybe we should put symlinks in /boot for all generations that can be booted (along with the default)
<Baughn> ((Well, I suppose it's the activation script.))
<fpletz> Baughn: just checked the code for you: both the switch and boot commands of nixos-rebuild will update /nix/var/nix/profiles/system
<Baughn> *nods gratefully*
<{^_^}> [nixpkgs] @lheckemann merged pull request #70632 → Release 19.09 doc updates → https://git.io/JeC5w
<{^_^}> [nixpkgs] @lheckemann pushed 3 commits to master: https://git.io/JeC59
<fpletz> wedens: hmm, do you know if NM can talk with networkd?
<fpletz> wedens: and do you have networking.useDHCP enabled?
<wedens> fpletz: I don't have `useDHCP` enabled (at least explicitly). I don't know if there is any integration between NM and networkd (probably not)
<{^_^}> [nixpkgs] @lheckemann pushed 2 commits to release-19.09: https://git.io/JeC57
<{^_^}> [nixpkgs] @romildo merged pull request #70018 → cwm: 5.6 -> 6.3, and myself as maintainer → https://git.io/JeZAC
<{^_^}> [nixpkgs] @romildo pushed 3 commits to master: https://git.io/JeC55
astrall33 has joined #nixos
cook23 has joined #nixos
<fpletz> wedens: ok, if you haven't touched networking.useDHCP it is enabled by default and you want to disable it excplicitely, because then networkd might interfere with interfaces managed by NM and that setting doesn't work well with networkd in general
<{^_^}> [nixpkgs] @disassembler merged pull request #70630 → 19.09 notes: document timesyncd issue → https://git.io/JeC5l
<{^_^}> [nixpkgs] @disassembler pushed commit from @lheckemann to master « 19.09 notes: document timesyncd issue »: https://git.io/JeC5N
<fpletz> that might not be the root of your problem but might help with slowness at bootup though
<wedens> fpletz: `nixos-option networking.useDHCP ` shows false
<fpletz> great :)
<Ariakenom> nix-shell -p zlib --run "cabal v2-build"; complains about zlib.so
<Ariakenom> eh complains is a bit vague :). No such file or directory
<infinisil> Ariakenom: Does it work with v1-build?
<{^_^}> [nixpkgs] @lheckemann pushed to release-19.09 « 19.09 notes: document timesyncd issue »: https://git.io/JeCdJ
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/0e0ee084d6d (from 67 minutes ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
astrall33 has quit [Ping timeout: 246 seconds]
abrar has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70635 → libraw: 0.19.3 -> 0.19.5 → https://git.io/JeCdI
<{^_^}> [nixpkgs] @jonringer merged pull request #70473 → pythonPackages.pandas: 0.25.0 -> 0.25.1 → https://git.io/JeCY1
<{^_^}> [nixpkgs] @jonringer pushed commit from @risicle to master « pythonPackages.pandas: 0.25.0 -> 0.25.1 »: https://git.io/JeCdL
<Ariakenom> infinisil: it's failing to find any dependency, ex lens, except base. Not sure waht I screwed up
<waleee-cl> Ariakenom: try adding pkgconfig
<waleee-cl> ie ... -p zlib pkgconfig --run ....
<Ariakenom> I made a default.nix a random assortment buildInputs = [ pkgconfig zlib coreutils pkg-config pcre ]
<Ariakenom> waleee-cl: no luck
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70636 → libxl: 3.8.4 -> 3.8.5 → https://git.io/JeCd3
<{^_^}> [nixpkgs] @samdoshi opened pull request #70637 → Squeezelite updates and refactor → https://git.io/JeCds
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/ca7b676339d (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/ca7b676339d (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
astrall33 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70639 → manuskript: 0.9.0 -> 0.10.0 → https://git.io/JeCd0
growpotkin has joined #nixos
hyper_ch2 has quit [Remote host closed the connection]
hmpffff has joined #nixos
knupfer has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace closed pull request #70571 → pantheon.elementary-wallpapers: 5.3 -> 5.4 → https://git.io/JeCXT
<{^_^}> [nixpkgs] @worldofpeace closed pull request #70567 → pantheon.elementary-camera: 1.0.4 -> 1.0.5 → https://git.io/JeCP8
Ariakenom_ has joined #nixos
<{^_^}> [nixos-org-configurations] @edolstra pushed to master « tarball-mirror: Update to 19.09 »: https://git.io/JeCd2
astrall33 has quit [Remote host closed the connection]
Ariakenom has quit [Ping timeout: 240 seconds]
astrall33 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70640 → libsass: 3.6.1 -> 3.6.2 → https://git.io/JeCdo
<{^_^}> [nixpkgs] @maggesi opened pull request #70641 → Rename z77z into maggesi → https://git.io/JeCdK
<{^_^}> [nixpkgs] @vbgl opened pull request #70642 → coq_8_10: 8.10+β3 → 8.10.0 → https://git.io/JeCdM
kiloreux has joined #nixos
knupfer has quit [Quit: knupfer]
hmpffff has quit [Quit: nchrrrr…]
kiloreux_ has joined #nixos
<kiloreux> I am trying to install nodejs-8 but getting the error that addEnvHooks command was removed.
<kiloreux> How can I go about that?
knupfer has joined #nixos
<kiloreux> This from a bit older revision of nixpkgs.
kiloreux_ has quit [Client Quit]
<{^_^}> [nixpkgs] @lheckemann opened pull request #70643 → treewide: mark some broken stuff as broken (WIP) → https://git.io/JeCd9
<AmandaC> I'm trying to set up my overlay for hydra testing, but I'm hitting some road blocks. I'd rather avoid re-testing every package in nixpkgs (for both memory and disk usage reasons) but I'm not sure how to lay out the code to be easily readable as a overlay for nix and as a hydra instruction?
<{^_^}> [nixpkgs] @edolstra pushed to master « Revert "make-disk-image: replace nixos-install by nix-env calls" »: https://git.io/JeCdQ
<AmandaC> My newest thought was: make an all-packages.nix which contains all the packages' callPAckage, and somehow import that from both the overlay's default.nix and the release.nix that hydra runs, but I'm having a hard time making it work for the overlay case
<{^_^}> [nixpkgs] @worldofpeace closed pull request #70488 → README.md: update links to 19.09 → https://git.io/JeCGz
<gchristensen> to-test.nix: { pkgs ? import <nixpkgs> {} }: { inherit (pkgs) pkg1 pkg2 pkg3 pkg4 ...; }
<{^_^}> [nixpkgs] @jonringer merged pull request #70636 → libxl: 3.8.4 -> 3.8.5 → https://git.io/JeCd3
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « libxl: 3.8.4 -> 3.8.5 »: https://git.io/JeCdb
<gchristensen> AmandaC: ^ is what I'd do :)
hyper_ch2 has joined #nixos
<{^_^}> [nixpkgs] @wizeman opened pull request #70644 → kakounePlugins: fix license names → https://git.io/JeCdA
hmpffff has joined #nixos
hyper_ch2 has quit [Remote host closed the connection]
<wedens> I'm not sure what happened but I started getting `Device /dev/sda1 is not a valid LUKS device.` after enterin luks passphrase on boot
hyper_ch2 has joined #nixos
<wedens> `/dev/sda1` is (unencrypted) efi partition
<AmandaC> gchristensen: how will I give it my overlay, though? Unless I'm missing something, it then infinate recursions when I add an `overlays = [ import ./overlay ];` to the `import <nixpkgs>`?
kleisli has joined #nixos
<gchristensen> AmandaC: can you paste overlay.nix?
hyper_ch2 has quit [Remote host closed the connection]
hyper_ch2 has joined #nixos
<AmandaC> gchristensen: https://gitlab.darkdna.net/amanda/nix/blob/master/overlay/default.nix <-- release.nix has some un-uploaded changes, but I can commit and push that now if it'll help.
hyper_ch2 has quit [Remote host closed the connection]
<gchristensen> yep, so { pkgs ? import <nixpkgs> { overlays = [ (import ./overlay) ]; } }: ... should be fine
hmpffff has quit [Quit: nchrrrr…]
<wedens> also I don't have this /dev/sda1 in boot.initrd.luks.devices
<AmandaC> gchristensen: maybe I misparsed your line, uploaded release.nix now: https://gitlab.darkdna.net/amanda/nix/blob/master/release.nix
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/8d3392ee6af (from 50 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
hyper_ch2 has joined #nixos
<gchristensen> AmandaC: looks good from here
hyper_ch2 has quit [Remote host closed the connection]
<AmandaC> Hrm. I wonder if it's a weird interaction between nix-linuxkit and my macbook I'm currently stuck with. Checking what my hydra instance says
<Ariakenom_> when running nix-shell -p ghc --run "ghci". I'm getting "libz.so: No such file or directory"
<gchristensen> I
<gchristensen> oops
t58 has joined #nixos
<wedens> how does nixos provide cryptdevice option to the kernel? I can't find it in generated systemd-boot entries
<{^_^}> [nixpkgs] @jonringer merged pull request #70635 → libraw: 0.19.3 -> 0.19.5 → https://git.io/JeCdI
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « libraw: 0.19.3 -> 0.19.5 »: https://git.io/JeCFL
<gchristensen> wedens: I think in stage-1.sh
<{^_^}> [nixpkgs] @disassembler opened pull request #70645 → 19.09 zhf mark broken → https://git.io/JeCFm
hyper_ch2 has joined #nixos
<wedens> I booted just fine with the same configuration before though :/
<{^_^}> [nixpkgs] @jonringer merged pull request #70639 → manuskript: 0.9.0 -> 0.10.0 → https://git.io/JeCd0
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « manuskript: 0.9.0 -> 0.10.0 »: https://git.io/JeCFO
<{^_^}> [nixpkgs] @lheckemann closed pull request #70643 → treewide: mark some broken stuff as broken (WIP) → https://git.io/JeCd9
<wedens> older generations doesn't work either
floscr has quit [Remote host closed the connection]
floscr has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #70620 → jitterentropy: 2.1.2 -> 2.2.0 → https://git.io/JeCH7
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « jitterentropy: 2.1.2 -> 2.2.0 »: https://git.io/JeCFc
iqubic has quit [Remote host closed the connection]
astrall33 has quit [Ping timeout: 264 seconds]
knupfer has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @vcunat pushed 2 commits to master: https://git.io/JeCFl
<{^_^}> [nixpkgs] @vcunat merged pull request #70618 → linuxPackages.virtualBoxGuestAdditions: fix build → https://git.io/JeCHa
growpotkin has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @vcunat pushed to release-19.09 « Merge #70618: linuxPackages.virtualBoxGuestAdditions: fix build »: https://git.io/JeCF8
hyper_ch2 has quit [Remote host closed the connection]
Tucky has quit [Quit: WeeChat 2.6]
floscr has quit [Ping timeout: 252 seconds]
floscr has joined #nixos
nakkle has quit [Ping timeout: 252 seconds]
sigmundv_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #70634 → wire-desktop: mac 3.10.3133 -> 3.10.3215 → https://git.io/JeC5M
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JeCF0
Ariakenom_ has quit [Remote host closed the connection]
srl295 has joined #nixos
drakonis has joined #nixos
<AmandaC> gchristensen: okay, nope, it's infinitely recursing on the hydra server as well? It def. seems to be related to the packages though.
<AmandaC> Is it bad to be mixing it with my machine testing?
<gchristensen> uhh yeah very possibly:)
<{^_^}> [nixpkgs] @vcunat pushed 7 commits to release-19.09: https://git.io/JeCF2
<{^_^}> [nixpkgs] @jerith666 opened pull request #70648 → eclipses: 2019-06 -> 2019-09 → https://git.io/JeCFw
<{^_^}> [nixpkgs] @vcunat closed pull request #70376 → [19.09] unbound: 1.9.3 -> 1.9.4 (CVE-2019-16866) → https://git.io/JecS9
<{^_^}> [nixpkgs] @wizeman opened pull request #70649 → ibus: use versioned URLs for UCD data → https://git.io/JeCFr
wfranzini has quit [Remote host closed the connection]
veske has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jtojnar opened pull request #70650 → meson: 0.51.2 → 0.52.0 → https://git.io/JeCF6
<{^_^}> [nixpkgs] @vcunat closed pull request #70374 → unbound: 1.9.3 -> 1.9.4 (CVE-2019-16866) → https://git.io/JecSP
doublex has quit [Ping timeout: 276 seconds]
doublex has joined #nixos
astrall33 has joined #nixos
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/0e0ee084d6d (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
o1lo01ol1o has joined #nixos
xkapastel has quit [Quit: Connection closed for inactivity]
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
doublex has quit [Ping timeout: 264 seconds]
<infinisil> AmandaC: You should use super.callPackage
o1lo01ol1o has quit [Ping timeout: 250 seconds]
<AmandaC> infinisil: I swear that caused the infinite recursion when being evaluated by nixos in the past, though?
<infinisil> If anything, self can cause infinite recursion
<infinisil> super less so
<infinisil> Or should at least
erasmas has joined #nixos
orivej has quit [Ping timeout: 240 seconds]
orivej_ has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/e9f56dd979c (from 84 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<AmandaC> Doesn't seem to fix the issue with my hydra testing, but it's also not causing the world to explode (at least not under nix-darwin )
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/0e0ee084d6d (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
<infinisil> AmandaC: Do you happen to have the inf rec trace?
<AmandaC> For the hydra one: https://gitlab.darkdna.net/amanda/nix/snippets/78 for the nixos one I was getting, not at the moment, had to send my nixos laptop out for repairs.
doublex has joined #nixos
cook23 has quit [Quit: Leaving]
Soo_Slow has quit [Remote host closed the connection]
<infinisil> AmandaC: Hm I can't reproduce the inf rec
<infinisil> I commented out pelorum because I don't have <darwin>
<infinisil> But other than that I can evaluate it just fine
<infinisil> Ah you're using <nixpkgs/nixos>
Ariakenom_ has joined #nixos
<infinisil> (so it uses whatever nixpkgs I have in my NIX_PATH)
<infinisil> AmandaC: What nixpkgs version are you using?
<Ariakenom_> when running nix-shell -p ghc --run "ghci". I'm getting "libz.so: No such file or directory"
<infinisil> Ariakenom_: What nixpkgs version?
selfsymmetric-pa has quit [Ping timeout: 240 seconds]
astrall33 has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #70623 → packer: 1.4.1 -> 1.4.4 → https://git.io/JeCQw
<{^_^}> [nixpkgs] @zimbatm pushed commit from @ryanfitzsimon to master « packer: 1.4.1 -> 1.4.4 (#70623) »: https://git.io/JeCbg
<Ariakenom_> infinisil: you mean like 19.03?
ixxie has joined #nixos
<infinisil> Ariakenom_: Easiest is to run `nix-info` and show the output
<Ariakenom_> system: "x86_64-linux", multi-user?: yes, version: nix-env (Nix) 2.2.2, channels(donna): "", channels(patrik): "", channels(root): "nixos-19.03.173506.2dfae8e22fd", nixpkgs: /nix/var/nix/profiles/per-user/root/channels/nixos
ebzzry has joined #nixos
<{^_^}> [nixpkgs] @primeos opened pull request #70651 → wlroots: 0.7.0 -> 0.8.0 → https://git.io/JeCby
worldofpeace has joined #nixos
o1lo01ol1o has joined #nixos
<AmandaC> infinisil: appologies, just got back -- the latest master moved the code that's causing the infinite recursion into release-overlay.nix to try and fix it (didn't work) -- I'm on the latest unstable, I believe? Not sure how to check
<infinisil> AmandaC: Also run `nix-info` and show the output :)
<infinisil> Ariakenom_: And *just* running `nix-shell -p ghc --run ghci` produces the error?
tobiasBora has joined #nixos
<tobiasBora> Hello,
<AmandaC> infinisil: nixpkgs-20.03pre194957.bef773ed53f
<Ariakenom_> infinisil: I opened a new terminal and it worked in there. I think I have a default.nix that ruins things somehow.
<infinisil> nix-shell -p isn't affected by any files in your path (by default)
<Ariakenom_> hm
<infinisil> Ariakenom_: Do you have the non-working terminal still open?
o1lo01ol1o has quit [Ping timeout: 250 seconds]
wildtrees has joined #nixos
<Ariakenom_> infinisil: yes
<infinisil> Ariakenom_: Try running the nix-shell with --pure
<Ariakenom_> if I navigate the new terminal to the same directory it has the error
<Ariakenom_> --pure produces the error
<infinisil> AmandaC: Wait so the command you have in the gist there doesn't produce the inf rec anymore?
<AmandaC> infinisil: no, but changing it to ./release-overlay.nix will
<AmandaC> infinisil: I tried removing the overlay testing to a new file, thinking it might help, but it doesn't seem to (at least not locally )
<AmandaC> Waiting on hydra to give it a try
<infinisil> Ariakenom_: Huh, what does `nix-instantiate '<nixpkgs>' -A zlib` evaluate to when you're in the directory and outside?
<infinisil> AmandaC: Ah I see
<infinisil> Yeah so I can reproduce the inf rec
astrall33 has joined #nixos
<Ariakenom_> infinisil: I suspected .ghc.environment. So I moved it, it worked. then I moved it back, it worked.
<infinisil> Ahhh, so the error is on ghci's side, that makes more sense right
<AmandaC> just checked my local hydra, it's failing under that as well
<AmandaC> so it's not some weirdness with darwin / nix-linuxkit
<infinisil> AmandaC: Oh, you apparently missed what gchristensen said earlier
<infinisil> You need to use overlays = [ (import ./overlay) ]
<infinisil> Parens!
<AmandaC> oh
<tobiasBora> I don't know why, but on some python libraries if I fetch from Pypi, I have an error saying "requirements.txt does not exist". And if I fetch from Github, it works, but later on I can't use it in another program : "ERROR: No matching distribution found for NAME OF LIB >= version lib (from NAME OF PROGRAM==version program)"
<AmandaC> ... that was it.
<AmandaC> And thinking back on it, I had similar issues with my nixos config before, I totally forgot about the parens fixing it.
<infinisil> :)
<tobiasBora> so 2 questions: 1) any idea why requirements.txt disepear on pypi? (see ex. qcq library) 2) any idea how to give a version number when I getch from github?
<tobiasBora> To see a full example: http://paste.debian.net/1105179
<{^_^}> [nixpkgs] @teto opened pull request #70652 → nodesPackages.insect: init at 5.3.0 → https://git.io/JeCNq
<teto> trying to package my first npm program. Kinda lost right now so any help wlcome :) see ^
<Ariakenom_> infinisil: so .. the env file had kept something that now refered to the wrong zlib?
growpotkin has joined #nixos
<infinisil> Ariakenom_: Maybe yeah, but not sure
<infinisil> Do you have some minimal cabal file to reproduce?
<infinisil> tobiasBora: pypi isn't a mirror of the original source, they strip everything non-essential i believe
Boomerang has quit [Ping timeout: 264 seconds]
<tobiasBora> infinisil: and isn't requirement.txt kind of essential? Or if it's not, shouldn't nix be able not to use this file?
<Ariakenom_> infinisil: codeworld-api is the one breaking I think
<infinisil> tobiasBora: It's this CQC-Python package right?
astrall33 has quit [Ping timeout: 250 seconds]
freeman42x has joined #nixos
drewr has joined #nixos
sigmundv_ has joined #nixos
<tobiasBora> infinisil: this one https://github.com/SoftwareQuTech/CQC-Python
<{^_^}> [nixpkgs] @worldofpeace pushed commit from @Kjuvi to master « formatter: init at 0.3.0 »: https://git.io/JeCNn
<{^_^}> [nixpkgs] @worldofpeace closed pull request #70512 → formatter: init at 0.3.0 → https://git.io/JeCBL
freeman42x has quit [Remote host closed the connection]
freeman42x has joined #nixos
<AmandaC> How can I set allowUnfree for my hydra instance?
<{^_^}> [nixpkgs] @stigtsp opened pull request #70653 → i3status-rust: 0.10.0 -> 0.11.0 → https://git.io/JeCNW
<infinisil> tobiasBora: Try using fetchPypi with `format = "wheel"`
<infinisil> And `python = "py3"`
<infinisil> tobiasBora: Because looking at the files it provides, there's two of them: https://pypi.org/project/cqc/3.0.2/#files
<infinisil> By specifying the attrs I mentioned you should get the wheel one
astrall33 has joined #nixos
<infinisil> tobiasBora: Also specify `format = "wheel"` in the buildPythonPackage then
freeman42x has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jonringer merged pull request #69679 → mgba: 0.7.2 -> 0.7.3 → https://git.io/JeZnu
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « mgba: 0.7.2 -> 0.7.3 »: https://git.io/JeCNl
<Ariakenom_> infinisil: cabal file and bash command https://gist.github.com/Ariakenom/a4238e65f2f624e34ff8b152228b1fdd
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
<{^_^}> [nixpkgs] @jonringer merged pull request #69668 → libx86emu: 2.3 -> 2.4 → https://git.io/JeZZG
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « libx86emu: 2.3 -> 2.4 »: https://git.io/JeCN8
freeman42x has joined #nixos
astrall33 has quit [Ping timeout: 240 seconds]
<tobiasBora> infinisil: interesting, thanks! I'll try. What does it do exaclty?
<tobiasBora> infinisil: and also, any idea why the github method fails?
<infinisil> tobiasBora: I have no idea lol, but looks like a different way of declaring packages
<infinisil> tobiasBora: No idea about that either, didn't really check though
erasmas has quit [Read error: Connection reset by peer]
erasmas has joined #nixos
sk8forether has joined #nixos
<infinisil> Ariakenom_: Ah yes, can reproduce now
<Ariakenom_> good. maybe?
drakonis has quit [Quit: WeeChat 2.6]
<infinisil> So it fails while building blank-canvas
<infinisil> I feel like maybe the zlib dependency isn't declared in it
boxscape has joined #nixos
* infinisil checks
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #70603 → gtkwave: 3.3.101 -> 3.3.102 → https://git.io/JeCSX
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @r-ryantm to master « gtkwave: 3.3.101 -> 3.3.102 »: https://git.io/JeCNP
gila has joined #nixos
<{^_^}> [nixpkgs] @stigtsp opened pull request #70654 → perlPackages.MojoSQLite: init at 3.002 → https://git.io/JeCNX
sigmundv__ has joined #nixos
Izorkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
<exarkun> is `-A all` magic or does a derivation do something to support it specifically?
doublex has quit [Read error: Connection reset by peer]
Izorkin has joined #nixos
doublex has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #70589 → znc: 1.7.4 -> 1.7.5 → https://git.io/JeCMH
<{^_^}> [nixpkgs] @jonringer pushed commit from @Izorkin to master « znc: 1.7.4 -> 1.7.5 »: https://git.io/JeCN5
sigmundv_ has quit [Ping timeout: 246 seconds]
Minijackson[m] has joined #nixos
KodiakIT[m] has joined #nixos
clefru has joined #nixos
regnat[m] has joined #nixos
abbec has joined #nixos
colemickens has joined #nixos
snupples[m] has joined #nixos
malteof[m] has joined #nixos
otini has joined #nixos
joelpet1 has joined #nixos
marius851000[m] has joined #nixos
tails[m] has joined #nixos
jtojnar has joined #nixos
arturo[m] has joined #nixos
codyopel has joined #nixos
zurdo has joined #nixos
Seb[m] has joined #nixos
frislie[m] has joined #nixos
yoho[m]1 has joined #nixos
peel1 has joined #nixos
tyrion-mx has joined #nixos
BinkyTheClown has joined #nixos
alj[m] has joined #nixos
Vskilet has joined #nixos
tejok[m] has joined #nixos
jak[m] has joined #nixos
chuzz_ has joined #nixos
MiloIgnis[m] has joined #nixos
Ericson2314 has joined #nixos
olejorgenb[m] has joined #nixos
quiet_laika[m] has joined #nixos
ctrl_shift_smtng has joined #nixos
truby has joined #nixos
NickHu has joined #nixos
xavierm02 has joined #nixos
bendlas has joined #nixos
Brio[m] has joined #nixos
bee[m]1 has joined #nixos
ArtemVorotnikov[ has joined #nixos
tokudan[m] has joined #nixos
dwagenk has joined #nixos
Notkea[m] has joined #nixos
ejpcmac has joined #nixos
Yakulu[m] has joined #nixos
atopuzov[m] has joined #nixos
craige[m] has joined #nixos
jersey[m] has joined #nixos
Moredread[m] has joined #nixos
musicmatze has joined #nixos
contrun[m] has joined #nixos
MerlinGttlinger[ has joined #nixos
frederic_chopwn[ has joined #nixos
nilsirl[m] has joined #nixos
fulgjon has joined #nixos
sphalerit has joined #nixos
MilkManzJourDadd has joined #nixos
balsoft has joined #nixos
attente[m] has joined #nixos
divansantana has joined #nixos
DanP[m] has joined #nixos
spacekitteh[m] has joined #nixos
MayeulC_backup has joined #nixos
iceychris[m] has joined #nixos
KarelWDingeldey[ has joined #nixos
fasd has joined #nixos
icetan has joined #nixos
ndarwincorn has joined #nixos
pingveno[m] has joined #nixos
arcnmx has joined #nixos
slabity has joined #nixos
schmittlauch[m] has joined #nixos
mirsal has joined #nixos
Ox4A6F has joined #nixos
groggy[m] has joined #nixos
sevcsik[m] has joined #nixos
syntaxtree[m] has joined #nixos
Nyanloutre[m] has joined #nixos
Smith[m] has joined #nixos
kaychaks[m] has joined #nixos
clacke[m] has joined #nixos
jak_wolf[m] has joined #nixos
elais[m] has joined #nixos
bkchr has joined #nixos
Shyim[m] has joined #nixos
imj[m] has joined #nixos
cornu has joined #nixos
craigevil[m] has joined #nixos
rnhmjoj has joined #nixos
bricewge has joined #nixos
b-m-f[m] has joined #nixos
alienpirate5 has joined #nixos
jonreeve[m] has joined #nixos
rycee has joined #nixos
TravisRt2botio[m has joined #nixos
badmutex[m] has joined #nixos
zmlww[m] has joined #nixos
steshaw[m] has joined #nixos
Dandellion[m] has joined #nixos
nh2[m] has joined #nixos
florianjacob has joined #nixos
GerdFlaig[m] has joined #nixos
tonic0x539[m] has joined #nixos
cab404[m] has joined #nixos
IslandUsurper has joined #nixos
blitzclone_ has joined #nixos
Lisanna[m] has joined #nixos
zaphar_ps[m] has joined #nixos
Bruno[m] has joined #nixos
siraben has joined #nixos
Diamaths[m] has joined #nixos
isgy[m] has joined #nixos
hpfr[m] has joined #nixos
nash8192[m] has joined #nixos
grahamc[m] has joined #nixos
sylvie[m] has joined #nixos
weebull[m] has joined #nixos
ninjatrappeur[m] has joined #nixos
neonfuz2 has joined #nixos
domenkozar[m] has joined #nixos
sm[m] has joined #nixos
NfixEstrada[m] has joined #nixos
aymenstudios[m] has joined #nixos
HappyEnt[m] has joined #nixos
nobbo[m] has joined #nixos
sonercirit[m] has joined #nixos
momack2[m] has joined #nixos
matthewbauer has joined #nixos
l33[m] has joined #nixos
submoo[m] has joined #nixos
ilya-fedin has joined #nixos
yangm has joined #nixos
VaNilLa[m] has joined #nixos
balsoft[m] has joined #nixos
ronny has joined #nixos
aanderse has joined #nixos
vvbb[m] has joined #nixos
goibhniu has joined #nixos
vaibhavsagar has joined #nixos
gspia[m] has joined #nixos
sierraDelta has joined #nixos
dominicusin[m] has joined #nixos
is0x3F has joined #nixos
nocent has joined #nixos
MarkOtaris has joined #nixos
hiroshi[m] has joined #nixos
jonge[m] has joined #nixos
wrunt[m] has joined #nixos
midi[m] has joined #nixos
ZD[m] has joined #nixos
jwaksbaum[m] has joined #nixos
seekerus3r[m] has joined #nixos
coniferous-cube[ has joined #nixos
red[m] has joined #nixos
JaakkoLuttinen[m has joined #nixos
am3on[m] has joined #nixos
simbergm has joined #nixos
Noughtmare[m] has joined #nixos
Guest25135 has joined #nixos
Sisyphe[m] has joined #nixos
RIOTIM[m] has joined #nixos
timokau[m] has joined #nixos
TheSirC[m] has joined #nixos
infinisil-m has joined #nixos
info_supplicant[ has joined #nixos
harkenedraven has joined #nixos
philipp[m] has joined #nixos
joepie91[m] has joined #nixos
rihardsk[m] has joined #nixos
white_bluff[m] has joined #nixos
pinage404[m] has joined #nixos
vxzero[m] has joined #nixos
freddie_freeload has joined #nixos
danielrf[m] has joined #nixos
thequux[m] has joined #nixos
macerbi[m]1 has joined #nixos
EuAndreh[m] has joined #nixos
MichaelEden[m] has joined #nixos
Victor[m] has joined #nixos
eddyb has joined #nixos
bennofs[m] has joined #nixos
bachp has joined #nixos
tindvik[m] has joined #nixos
kxlljoyy[m] has joined #nixos
roadt[m] has joined #nixos
peterhoeg[m] has joined #nixos
Woland[m] has joined #nixos
layus[m] has joined #nixos
pachacuti[m] has joined #nixos
copy` has joined #nixos
luftmensch[m] has joined #nixos
wangoe[m] has joined #nixos
abbafei[m] has joined #nixos
Dan[m]8 has joined #nixos
das-g[m] has joined #nixos
klbrn[m] has joined #nixos
ajirx[m] has joined #nixos
hr[m] has joined #nixos
bikki[m] has joined #nixos
ptotter[m] has joined #nixos
manveru[m] has joined #nixos
mildred has joined #nixos
tyx2q[m] has joined #nixos
provessor[m] has joined #nixos
tobim[m] has joined #nixos
RobinKroonen[m] has joined #nixos
ma27[m] has joined #nixos
li_matrix has joined #nixos
bkl[m] has joined #nixos
aquarial has joined #nixos
escaP[m] has joined #nixos
v0id72[m] has joined #nixos
dtz has joined #nixos
vdot0x23[m] has joined #nixos
sauyon[m] has joined #nixos
aterius has joined #nixos
offlinehacker has joined #nixos
corpix[m] has joined #nixos
zmlww[m]1 has joined #nixos
cyberwolf[m] has joined #nixos
fidgetspinoza[m] has joined #nixos
roberth has joined #nixos
wak-work has joined #nixos
stites[m] has joined #nixos
Sascha[m]3 has joined #nixos
laas has joined #nixos
mariusz-kowalski has joined #nixos
alexarice[m] has joined #nixos
ptival[m] has joined #nixos
alxev[m] has joined #nixos
LinuXit has joined #nixos
jschievink has joined #nixos
abbradar[m] has joined #nixos
dnixty[m] has joined #nixos
eqyiel has joined #nixos
Fabian[m]3 has joined #nixos
haslersn[m] has joined #nixos
shibboleth has quit [Quit: shibboleth]
srid[m] has joined #nixos
M0ddba11[m] has joined #nixos
haslersn has joined #nixos
fgaz has joined #nixos
bohan[m] has joined #nixos
Thinkofname[m] has joined #nixos
wildtrees[m] has joined #nixos
thefloweringash has joined #nixos
sputny[m] has joined #nixos
grim_reaper[m] has joined #nixos
flip[m]1 has joined #nixos
cgm[m] has joined #nixos
Christian[m]4 has joined #nixos
Tony[m]3 has joined #nixos
orospakr[m] has joined #nixos
smolboye[m] has joined #nixos
hienergy[m] has joined #nixos
ck3d[m] has joined #nixos
Gopal[m] has joined #nixos
kraem[m] has joined #nixos
schmittlauch[m]1 has joined #nixos
arianvp[m] has joined #nixos
kyleondy[m] has joined #nixos
xbreak[m] has joined #nixos
anton-latukha[m] has joined #nixos
bnasty[m] has joined #nixos
setthemfree[m] has joined #nixos
pop[m]1 has joined #nixos
gudea[m] has joined #nixos
y0x3y[m] has joined #nixos
hackeryarn[m] has joined #nixos
alexoundos[m] has joined #nixos
bpye has joined #nixos
boredom101[m]1 has joined #nixos
alex[m]18 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #70586 → fossil: 2.9 -> 2.10 → https://git.io/JeCME
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « fossil: 2.9 -> 2.10 »: https://git.io/JeCNb
setthemfree[m] is now known as Guest88965
<{^_^}> [nixpkgs] @jonringer merged pull request #70579 → entr: 4.2 -> 4.3 → https://git.io/JeCXx
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « entr: 4.2 -> 4.3 »: https://git.io/JeCNA
<Ariakenom_> infinisil: you're a saint. did you send a reply before matrix DOSed my log?
calbrecht[mb] has quit [Remote host closed the connection]
Mateon1 has quit [Ping timeout: 245 seconds]
selfsymmetric-pa has joined #nixos
<infinisil> Hehe I'm hiding join/quits, didn't send anything yet
Mateon1 has joined #nixos
calbrecht[mb] has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @Infinisil merged pull request #68800 → mumble,murmur: 1.2.19 -> 1.3.0 → https://git.io/JeCNh
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JeCNj
Izorkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
Izorkin has joined #nixos
boxscape has quit [Remote host closed the connection]
boxscape has joined #nixos
develCuy has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @vladmaraev opened pull request #70655 → torchtext: init at 0.4.0 → https://git.io/JeCAq
<infinisil> Ariakenom_: Hm still not sure, but I'd try adding a `pkgconfig-depends: zlib` and/or `extra-libraries: z` to blank-canvas cabal file, maybe it just never supported v2-style builds or so
develCuy has joined #nixos
<{^_^}> [nixpkgs] @disassembler merged pull request #70645 → 19.09 zhf mark broken → https://git.io/JeCFm
<{^_^}> [nixpkgs] @disassembler pushed 2 commits to release-19.09: https://git.io/JeCAY
growpotkin has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70656 → libwhereami: 0.2.2 -> 0.3.0 → https://git.io/JeCAO
<{^_^}> [nixpkgs] @jonringer merged pull request #70588 → gitAndTools.git-remote-hg: 1.0.0 -> 1.0.1 → https://git.io/JeCMD
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « gitAndTools.git-remote-hg: 1.0.0 -> 1.0.1 »: https://git.io/JeCAs
<exarkun> python27Packages.trollius fails its check step in my CI configuration
<Ariakenom_> infinisil: my v1-build is going even worse.
<exarkun> trying to figure out why I should care about this, I don't use trollius
<Ariakenom_> cabal: Encountered missing dependencies: lens -any
<exarkun> Why is it getting built and checked?
<exarkun> I can't make sense of the `nix-store --query --tree` output. It puts trollius beneath tahoe-lafs. but tahoe-lafs does not depend on trollius at all.
<Ariakenom_> I tried with only lens because that seemed farly common. text worked
<mdash> exarkun: have you tried `nix why-depends`?
<{^_^}> [nixpkgs] @jonringer merged pull request #70575 → flacon: 5.4.0 -> 5.5.1 → https://git.io/JeCXi
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « flacon: 5.4.0 -> 5.5.1 »: https://git.io/JeCAC
<{^_^}> [nixpkgs] @jonringer merged pull request #70578 → python37Packages.foxdot: 0.8.1 -> 0.8.3 → https://git.io/JeCX5
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.foxdot: 0.8.1 -> 0.8.3 »: https://git.io/JeCAW
* exarkun tries it
<exarkun> well, it's easier to read
<exarkun> but it basically says the same thing, I think
<{^_^}> [nixpkgs] @thoughtpolice merged pull request #70280 → spark: 2.4.3 -> 2.4.4; remove 1.6.3 (EOL); clean up → https://git.io/JecmV
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @cko to master « spark: 2.4.3 -> 2.4.4; remove 1.6.3 (EOL); refactoring »: https://git.io/JeCA4
doublex has quit [Ping timeout: 240 seconds]
<oscarvarto> Hi! I have noticed that when I issue `nixos-rebuild switch`, the download speed is not on par with my (admittedly not-so-fast) higher download speed.
<oscarvarto> Sometimes it is painfully slow
<exarkun> my only guess at this point is that tahoe-lafs depends on it /transitively/ not directly. but I don't know why there aren't edges in this graph for the intermediate store objects, then
<exarkun> oh
lord| has quit [Ping timeout: 240 seconds]
<exarkun> there at the bottom of my CI build are the breadcrumbs I need, I guess
<exarkun> unless this is a concurrency artifact
<exarkun> trollius <- autobahn <- tahoe-lafs
<exarkun> but why isn't autobahn an edge in `nix-store --query --tree` or `nix why-depends`
<{^_^}> [nixpkgs] @rycee pushed commit from @jerith666 to master « eclipses: 2019-06 -> 2019-09 »: https://git.io/JeCAu
<{^_^}> [nixpkgs] @rycee closed pull request #70648 → eclipses: 2019-06 -> 2019-09 → https://git.io/JeCFw
<exarkun> I guess some obscure artifact of how python support is implemented
<{^_^}> [nixpkgs] @globin merged pull request #70530 → zathura 0.4.3 > 0.4.4 (and girara 0.3.2 -> 0.3.3) → https://git.io/JeCui
<{^_^}> [nixpkgs] @globin pushed 3 commits to master: https://git.io/JeCAg
lord| has joined #nixos
jgeerds has joined #nixos
<{^_^}> [nixpkgs] @mweinelt opened pull request #70657 → babeld: 1.9.0 -> 1.9.1 [19.09] → https://git.io/JeCAr
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @dsg22 opened pull request #70658 → chromaprint: 1.3.2 -> 1.4.3 → https://git.io/JeCAP
Izorkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
<mdash> exarkun: does .tahoe-wrapped mention trollius?
Izorkin has joined #nixos
<infinisil> Ariakenom_: Well you'll have to provide the dependencies through Nix with v1-build, that's expected to not work
<exarkun> mdash: yes, in the giant site-mangling line nix sticks at the top
fusion809 has quit [Remote host closed the connection]
<Ariakenom_> infinisil: oh
<Ariakenom_> like this?
<Ariakenom_> nix-shell -p haskellPackages.codeworld-api --run "ghci"
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
Izorkin has quit [Client Quit]
Izorkin has joined #nixos
<oscarvarto> Do I get slower download speeds on `nixos-unstable-small`? Or is it irrelevant which channel I use (related to download speed)?
<oscarvarto> Is there something like mirrors that can be customized to get better speed?
ris has joined #nixos
<infinisil> oscarvarto: Entirely unrelated
<infinisil> It's all the same cache
<{^_^}> [nixpkgs] @joachifm merged pull request #70516 → Remove blcr for 19.09 → https://git.io/JeCBu
<{^_^}> [nixpkgs] @joachifm pushed 3 commits to release-19.09: https://git.io/JeCAb
<oscarvarto> infinisil: Thanks for answering!
<gchristensen> also, the binary cache is on S3 and fronted by Fastly.com, so unless you can mirror it closer than Fastly has a POP, you probably can't get a faster mirror :)
<Ariakenom_> infinisil: thanks for all your help and time. I will give up for now :)
<infinisil> oscarvarto: gchristensen: Not sure if this is still going: https://discourse.nixos.org/t/improvements-to-cache-nixos-org-help-test-the-new-config/3620
<gchristensen> I think it is, last I asked about integrating it with cache.nixos.org, he said it wasn't ready
<infinisil> Ariakenom_: Well I'm just using v1-commands, seems to work best with nix for now
<Ariakenom_> infinisil: right
Ariakenom_ has quit [Remote host closed the connection]
lovesegfault has quit [Quit: WeeChat 2.6]
oscarvarto has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70659 → mpop: 1.4.5 -> 1.4.6 → https://git.io/JeCxO
<Shell> gchristensen: doesn't someone host a nixpkgs cache at various confs/camps?
oscarvarto has joined #nixos
sauyon has joined #nixos
<sauyon> does anybody know of any way to build packages that use Microsoft's rush (https://rushjs.io/)?
<{^_^}> [nixpkgs] @globin merged pull request #70563 → clamav: 0.101.4 -> 0.102.0 → https://git.io/JeCPq
<{^_^}> [nixpkgs] @globin pushed 2 commits to master: https://git.io/JeCxR
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70660 → msmtp: 1.8.5 -> 1.8.6 → https://git.io/JeCx0
jluttine has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @edolstra pushed to master « Revive systemd.coredump.enable »: https://git.io/JeCxz
<oscarvarto> How can I configure git user.name & user.mail in NixOS? Is it mandatory to use HomeManager? Cannot find documentation on this
<sauyon> just `git config` as normal
<exarkun> you can splat whatever marvelous mutable state into your home directory you like
<oscarvarto> I am using `git config --global user.name "Oscar Vargas Torres"` (similar for email), and after that zsh is not picking my git configuration
<qyliss> why would zsh be reading your git configuration?
<{^_^}> [nixpkgs] @makefu opened pull request #70661 → pythonPackages.nixpkgs-pytools: 1.0.1 -> 1.3.0 → https://git.io/JeCxN
<oscarvarto> I mean, I keep getting the "*** Please tell me who you are." message from git
<sauyon> What does `git config --global --get user.name` say?
Phillemann has quit [Quit: WeeChat 2.6]
<oscarvarto> My bad. It was a stupid mistake I made. I was configuring user.mail instead of user.email. Sorry for the noise
<{^_^}> [nixpkgs] @worldofpeace opened pull request #70662 → gtkd: 3.8.5 -> 3.9.0 → https://git.io/JeCpe
<{^_^}> [nixpkgs] @worldofpeace merged pull request #70462 → gnomeExtensions.mpris-indicator-button: init at 2019-09-29 → https://git.io/JeCqW
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JeCpv
<{^_^}> [nixpkgs] @worldofpeace closed pull request #65087 → gtkd: 3.8.5 -> 3.9.0 → https://git.io/fjMkw
brandonhamilton has joined #nixos
veske has joined #nixos
<{^_^}> [nixpkgs] @bjornfor pushed commit from @ysndr to release-19.09 « solaar: track latest release and set correct repo owner »: https://git.io/JeCpO
Okinan has joined #nixos
brandonhamilton has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @peti pushed 10 commits to haskell-updates: https://git.io/JeCp0
<{^_^}> [nixpkgs] @peti pushed 10 commits to master: https://git.io/JeCpu
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70663 → ne: 3.1.2 -> 3.2.1 → https://git.io/JeCpz
<{^_^}> [nixpkgs] @vcunat pushed to master « Revert "Merge #67232: machinectl compliant NixOS installation" »: https://git.io/JeCp1
zfnmxt has quit [Quit: Bye!]
zfnmxt has joined #nixos
Boomerang has joined #nixos
logzet has quit [Ping timeout: 245 seconds]
ctp has joined #nixos
qubasa has quit [Ping timeout: 276 seconds]
qubasa has joined #nixos
gyroninja has quit [Quit: WeeChat 2.5]
<freeman42x> does anyone know how to help me with this? https://github.com/jakeday/linux-surface/issues/312#issuecomment-539157855
veske has quit [Quit: This computer has gone to sleep]
rawtaz has quit [Read error: Connection reset by peer]
rawtaz has joined #nixos
erba has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70664 → multipath-tools: 0.8.2 -> 0.8.3 → https://git.io/JeChl
zeta_0 has joined #nixos
<sauyon> how are you building the library?
<erba> Hey - I'm trying to get st (https://st.suckless.org/) to load settings from .Xresources - I have applied the xresources patch in my nix configuration (https://st.suckless.org/patches/xresources/) but it doesn't seem to work, I'm using dwm - anyone know if there is anything else I need to do?.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70665 → nmon: 16k -> 16m → https://git.io/JeCh0
<zeta_0> have the new nixos stable and unstable versions been released yet?
oida has quit [Remote host closed the connection]
oida has joined #nixos
<oscarvarto> I am installing both jdk (version 8) and adoptopenjdk-bin (version 11), and when I issue `nixos-rebuild switch`, I get collisions. Is that OK? Should I choose only one and use nix-shell whenever I need the other?
<oscarvarto> Or can I simply configure my system somehow to ignoreCollisions?
<sauyon> well, you can only have one `java` on your path at one time anyway and I don't believe that java provides version-numbered binaries so the latter seems sensible
<sauyon> you can't ignore collisions, how would that work
shibboleth has joined #nixos
<zeta_0> i heard a while back that the new nixos stable and unstable versions would be released this october, is this true?
ctp has quit [Remote host closed the connection]
domogled has joined #nixos
<oscarvarto> sauyon: I am installing several jdk system-wide in `configuration.nix`, in `environment.systemPackages`. If I install only one of them, and then I eventually run `nix-collect-garbage`, will I have to redownload the other jdk to run nix-shell?
<{^_^}> [nixpkgs] @cko opened pull request #70666 → jikes: removing → https://git.io/JeChD
<sauyon> oscarvarto: Indeed. I think there's a way to prevent a package from being garbage collected, let me check...
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.1]
tilpner has quit [Remote host closed the connection]
tilpner has joined #nixos
<oscarvarto> Thanks a lot!
oscarvarto has quit [Quit: Konversation terminated!]
orivej_ has quit [Ping timeout: 245 seconds]
ctp has joined #nixos
civodul has joined #nixos
<{^_^}> [nixpkgs] @makefu opened pull request #70667 → pythonPackages.devpi-common: 3.3.2 -> 3.4.0 → https://git.io/JeCjm
waleee-cl has quit [Quit: Connection closed for inactivity]
fendor has quit [Quit: Leaving]
<worldofpeace> ,tell zeta_0 nixos-unstable doesn't have released versions, it's basically a rolling development version of the next stable release. next nixos release is 19.09
<{^_^}> worldofpeace: I'll pass that on to zeta_0
ctp has quit [Remote host closed the connection]
ctp has joined #nixos
akaWolf has quit [Ping timeout: 276 seconds]
akaWolf has joined #nixos
mounty has quit [Quit: Konversation terminated!]
mounty has joined #nixos
ebzzry has quit [Ping timeout: 246 seconds]
psyanticy has quit [Quit: Connection closed for inactivity]
<o1lo01ol1o> So there's this "make release" option in the hydra GUI. I can't find anything in the manual about its recommended usage, is this a feature that people use for organizing releases?
<gchristensen> I think that is vestigial. I don't know it has been used since I came about (~4yrs ago)
domogled has quit [Ping timeout: 276 seconds]
<o1lo01ol1o> ah ha, good to know
Ariakenom has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/2bf1e8da243 (from 74 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
domogled has joined #nixos
drakonis has joined #nixos
millerj has quit [Remote host closed the connection]
<__monty__> Hmm, I added the "haskell" feature to force haskell builds to a remote builder. Anyone know why nix is still trying to build this expression locally? http://ix.io/1XWb
stepcut has joined #nixos
<stepcut> Is there a way to make --no-out-link the default? I find that often times I use nix-build to build some app I am working on and then I run it again and it wants to rebuild the app again because the previous run added a `result` link. I could perhaps use filterSource to ignore the file, but I'd rather it did not exist at all
<gchristensen> using filterSource is the "standard" way to do that
<gchristensen> --no-out-link is not the default because Nix assumes you don't want to immediately lose what you just built
millerj has joined #nixos
<{^_^}> [nixpkgs] @alyssais merged pull request #70202 → [19.09] linux: drop non-LTS versioned kernel attributes → https://git.io/JenH1
<{^_^}> [nixpkgs] @alyssais pushed to release-19.09 « linux: drop non-LTS versioned kernel attributes »: https://git.io/JeCjr
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70668 → opencascade-occt: 7.3.0p3 -> 7.4.0 → https://git.io/JeCj6
millerj has quit [Ping timeout: 276 seconds]
stepcut has quit [Remote host closed the connection]
<mdash> exarkun: alright so I think the issue is, why-depends and show-tree and such will tell you about the installed dependency graph (i.e., what GC cares about), the build-time dependency graph isn't preserved
<mdash> exarkun: and the former is entirely about where store paths are mentioned
<erba> So, how do I fix conflict warnings while rebuilding?
<mdash> erba: what did you do, and what warning did you get?
ericsagnes has quit [Ping timeout: 246 seconds]
<das_j> vuncat: Is there a reason the kresd module hardcodes 1 thread? And that it uses script= instead of serviceConfig.ExecStart=?
<das_j> vcunat: above
<erba> mdash: nothing recent - got them after trying to setup a dev env for android.. bunch of android related conflicts
<mdash> erba: what did you run to set it up though
<mdash> erba: was this using `nix-env -i`?
<erba> mdash: nope, built a few nix-expressions
<mdash> did they call buildEnv?
noudle has quit []
<erba> mdash: Actually I think I did try to install 1 thing with nix-env -i but i uninstalled it right away
<erba> uninstall it*
<mdash> erba: ok. so `nix-env -q` shows nothing android related?
<erba> mdash: show elm and elm-format (nothing related to android though)
shibboleth has quit [Quit: shibboleth]
<srid> Is the 19.09 channel not cached? I see gtk+ being compiled from source ...
<mdash> erba: ok
<erba> mdash: Is there a way to force a rebuild?
millerj has joined #nixos
joshuagl has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<simpson> srid: Depends on your configuration. In general, caching is package-by-package, not channel-by-channel; not all of a channel is built and cached.
ericsagnes has joined #nixos
<mdash> erba: of what?
millerj has quit [Ping timeout: 268 seconds]
<erba> mdash: nixos-rebuild test for example.. wanted to see if I managed to fix it.. but nope :P
<erba> collision between `/nix/store/0xy2280dk772d64kvba3ibvcapqn5vl5-platform-tools-28.0.1/libexec/android-sdk/platform-tools/adb' and `/nix/store/ndb844h55ffixq33pp64s2jc0a753za4-androidsdk/libexec/android-sdk/platform-tools/adb'
<erba> for example
<gchristensen> "On my Thinkpad X240 running NixOS and KDE Plasma, when I reboot it the trackpad will use 2 fingers for scrolling, then the next reboot it will use 3. It swaps on every boot. I am very confused." lol ... -- https://twitter.com/mgdm/status/1181277632312168448
<mdash> erba: ok. so you've got two different android things in your systemPackages
<mdash> erba: and they both want to put things at the same path
<mdash> gchristensen: was hoping it was monotonically increasing, that would be more interesting
<AmandaC> mdash: a week later: "Hey guys, come over here, I need 20 fingers to scroll this page!"
hmpffff has joined #nixos
<mdash> AmandaC: exactly
<mdash> bugs that bring people together
<erba> mdash: ah thanks! :)
<erba> fixed
ctp has quit [Remote host closed the connection]
gagbo has joined #nixos
ctp has joined #nixos
fendor has joined #nixos
Chiliparrot has joined #nixos
Synthetica has quit [Quit: Connection closed for inactivity]
jgeerds has quit [Remote host closed the connection]
millerj has joined #nixos
foldingcookie has joined #nixos
erba has quit [Quit: WeeChat 2.4]
oscarvarto has joined #nixos
<oscarvarto> sauyon: I had to leave for some moments. Sorry for that.
millerj has quit [Ping timeout: 276 seconds]
ctp has quit [Remote host closed the connection]
<sauyon> oscarvarto: you need to set `nix.extraOptions = "keep-outputs = true";`, then `nix-instantiate shell.nix --indirect --add-root $PWD/.gcroots/shell.drv`
<{^_^}> nix#2208 (by goodwillcoding, 1 year ago, open): nix-shell dependencies can be garbage collected any time now / persistent nix-shell envs
Chiliparrot has quit [Quit: Textual IRC Client: www.textualapp.com]
ctp has joined #nixos
<oscarvarto> sauyon: Thanks a lot! Will review the information and try to understand
millerj has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/0b427f50863 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
dansho has joined #nixos
millerj has quit [Ping timeout: 276 seconds]
cswl has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @jonringer merged pull request #70608 → intel-media-sdk: 19.1.0 -> 19.2.1 → https://git.io/JeC9B
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « intel-media-sdk: 19.1.0 -> 19.2.1 »: https://git.io/JeWeN
gila has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
<eyJhb> hyper_ch: I somewhat am now
<{^_^}> [nixpkgs] @geistesk opened pull request #70669 → golangci-lint: 1.17.1 -> 1.19.1 → https://git.io/JeWep
Astralix9 has joined #nixos
<Astralix9> gnome3 working fine on my macbook but on my desktop when I login I get a screen with a mouse pointer and a terminal is the top left corner (no window decorations). Anyone have ideas whats going on?
<selfsymmetric-pa> How can I use `overrideAttrs` to get kustomize 2.1? https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/tools/kustomize/default.nix
doublex has joined #nixos
<selfsymmetric-pa> I want to override the `version` and have dependent attrs like `buildFlagsArray` respect that.
<selfsymmetric-pa> But when I just override `version` to 2.1 it leaves 3.1 in the `buildFlagsArray`.
tmplt has joined #nixos
asymptotically has quit [Quit: Leaving]
kyren has joined #nixos
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/5b93ae127a6 (from 78 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<selfsymmetric-pa> Here's my current derivation: https://gist.github.com/f2618dee4d4b9032c5301fc2f63aafff
<selfsymmetric-pa> And here's what it produces: https://gist.github.com/0e373e5839cdf16f6918598ba2424773
<selfsymmetric-pa> It still has 3.1 littered here and there.
<kyren> Hey, so I did something dumb and upgraded on day 1 to macos catalina :D Is there a possibility of a working multi-user nix install right now on 10.15? It seems to work after following the instructions here: https://github.com/NixOS/nix/issues/2925 but I'm stuck trying to use nix tools as a user, I think it might be a permissions issue with creating the user profiles?
<{^_^}> nix#2925 (by mroi, 17 weeks ago, open): /nix will not be writable on macOS Catalina
<kyren> I get unhelpful error messages like: error: opening lock file '/nix/var/nix/db/big-lock': Permission denied
<{^_^}> nix#2925 (by mroi, 17 weeks ago, open): /nix will not be writable on macOS Catalina
<kyren> yeah I just linked to that
Ariakenom has quit [Quit: Leaving]
<selfsymmetric-pa> Whoops, sorry, I'm blind.
<kyren> I think multi-user installs on macos are less common? At least, all of the responses there seemed to assume a single user install, so I suspect whatever is going wrong is specific to multi-user, but I'm failing at debugging it
<tmplt> I have a confusing inf-recursion error in an imported file: I do `imports = [ mwe.nix ];` <https://gist.github.com/Tmplt/21e2566f1e9c0e6d6fb07383cb75fe2f> in my system configuration, and an infinite recursion is encountered on `pkgs`. How come?
cjpbirkbeck has joined #nixos
<kyren> selfsymmetric-pa: np :)
doublex_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70670 → openimageio2: 2.0.10 -> 2.0.11 → https://git.io/JeWvR
doublex has quit [Ping timeout: 268 seconds]
ixxie has quit [Ping timeout: 252 seconds]
millerj has joined #nixos
<infinisil> tmplt: You can't have imports depend on pkgs
<selfsymmetric-pa> This worked, but is mostly redundant: https://gist.github.com/05f1373c22e15ab4f213ec1c35807bd6
<selfsymmetric-pa> Not sure why it didn't work when I just did `overrideAttrs` on `version` and `rev`.
<infinisil> tmplt: You can use `(import <nixpkgs> {}).fetchFromGitHub` instead
<tmplt> infinisil: but I can do something like `home-manager...programs.zsh.plugins = [{ src = pkgs.fetchFromGithub { ... }; }];` in an imported file. Is that different?
<selfsymmetric-pa> How do I get overrideAttrs to recompute the fixed point?
<infinisil> tmplt: Yup
<infinisil> tmplt: Because there, *what* file you import doesn't depend on pkgs
<infinisil> pkgs is only used within that file
<infinisil> (comes into scope in the file only)
millerj has quit [Ping timeout: 276 seconds]
<infinisil> The explanation for why `imports = [ (... pkgs ...) ]` causes inf rec is that not only does imports depend on pkgs, but also pkgs on imports, because every file you import can change pkgs through e.g. the nixpkgs.overlays option
<{^_^}> [nixpkgs] @jonringer opened pull request #70671 → pythonPackages.cartopy: fix tests → https://git.io/JeWvg
<tmplt> infinisil: I see. Thank you.
knupfer has joined #nixos
knupfer has quit [Remote host closed the connection]
<selfsymmetric-pa> I would like to change one attribute (say `version`) with `overrideAttrs` and have the dependent attributes (say `buildFlagsArray`) get automatically recomputed. How can I do that?
knupfer has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
<selfsymmetric-pa> I thought that `overrideAttrs (attrs: rec { version = "my-version"; })` would be sufficient, but the dependent attributes are not being recomputed.
stepcut has joined #nixos
<selfsymmetric-pa> My goal is to change `version` and `rev` in the `kustomize` derivation here: https://github.com/NixOS/nixpkgs/blob/82d9988eb85f9f6d0de0da85b564d414d751d00c/pkgs/development/tools/kustomize/default.nix
<clever> selfsymmetric-pa: thats why i avoid using rec whenever possible, it just leads to confusion
<clever> selfsymmetric-pa: you need to override version, rev, buildFlagsArray, and src
<selfsymmetric-pa> clever: I can't get buildFlagsArray to implicitly use my overridden version?
<selfsymmetric-pa> Seem strange to have to override the transitive closure myself.
<clever> selfsymmetric-pa: thats just a nasty side-effect from using rec
<clever> selfsymmetric-pa: the values get baked in at parse time, and you have no way to change them
<selfsymmetric-pa> Would you recommend using rec or not in this case?
<clever> selfsymmetric-pa: rec in the override wont really make it work any better, as for sharing the rev and version, you can use either rec or let
oida has quit [Remote host closed the connection]
millerj has joined #nixos
oida has joined #nixos
knupfer has quit [Ping timeout: 264 seconds]
gxt has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @NeQuissimus pushed 7 commits to master: https://git.io/JeWv6
<{^_^}> [nixpkgs] @NeQuissimus pushed 5 commits to release-19.09: https://git.io/JeWv1
millerj has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @NeQuissimus pushed 5 commits to release-19.03: https://git.io/JeWvy
<kyren> oh god, NOTHING works right now, I regret my decision to update to catalina so much
<infinisil> Lol and macOS doesn't let you downgrade
<kyren> this might be related, if I do `sudo nix upgrade-nix` I get: error: unable to download 'https://github.com/NixOS/nixpkgs/raw/master/nixos/modules/installer/tools/nix-fallback-paths.nix': Problem with the SSL CA cert (path? access rights?) (77)
<kyren> if I get desperate I can just restore from time machine backup, there is a solution
drakonis has quit [Ping timeout: 245 seconds]
<infinisil> You can roll back macOS upgrades with time machine?
<kyren> yes[1] -- [1] This does not roll back SMC and other firmware updates which can and has caused problems for me before
<sauyon> this sounds like a bad time
<qyliss> gosh, I really did quit macOS just in time
<qyliss> i'm so sorry for you all
drakonis has joined #nixos
<kyren> I feel a bit bad being angry, I'm a fan of the change that causes it... and I understand why it's a pain
<clever> qyliss: even if you try to nixos your mac hardware, your in trouble!
<clever> qyliss: the new nvme controller is non-standard, and requires kernel patches!!
<kyren> this is all caused by the R/O system partition... which I'm for!
<kyren> I'm a bit early to the party though
<qyliss> my modern mac hardware sits gathering dust unused while I use a Thinkpad from 2012
<qyliss> I should really sell it
millerj has joined #nixos
wolfshappen has quit [Quit: bye]
<{^_^}> [nixpkgs] @groodt opened pull request #70672 → argo: 2.2.1 -> 2.4.0 → https://git.io/JeWvj
wolfshappen has joined #nixos
<kyren> well, right now my whole life revolves around nix and nix is broken... everything ELSE works fine, and it's not nix's fault or anything... there doesn't have to be blame I just need to fix it :D
selfsymmetric-pa has quit [Remote host closed the connection]
millerj has quit [Ping timeout: 268 seconds]
<clever> kyren: it should be fairly simple to upgrade nix without that script
<clever> kyren: first, are you on a singleuser or multiuser setup?
<{^_^}> [nixpkgs] @Profpatsch opened pull request #70673 → ultrastar-creator/ultrastar-manager: wrapQtAppsHook → https://git.io/JeWfJ
<kyren> I was on a multi-user setup but I'm currently trying a single user setup
<clever> kyren: did you fully remove nix before trying to switch?
<kyren> clever: yes, to the best of my ability
<clever> kyren: is nix-daemon still running?
astrall33 has joined #nixos
<kyren> would you like me to undo what I did re: the single user install and try the multi user install?
<clever> kyren: doesnt matter that much
<kyren> I'd vastly prefer the old set up, so that's what I'm going to do, give me just a moment
oscarvarto has quit [Quit: Konversation terminated!]
astrall33 has quit [Client Quit]
<kyren> okay, so yeah after doing a clean multi-user install, the nix daemon does not appear to be running, I'm going to try rebooting to see if launchctl can figure things out... just a sec
kvda has joined #nixos
<kyren> OKAY, most of my problems were that the nix daemon was not loading, but a few restarts and recreating the /nix volume from scratch seems to have fixed that, I'm now working on fixing the SSL cert issue, but I suspect I know what might be wrong there
<Shados> ...TIL `nix search` while sitting at the results list appears to retain the actual Nix expression eval, based on its memory consumption ._.
fendor has quit [Read error: Connection reset by peer]
<kyren> clever: anyway thanks for your help, I think I just needed to calm down and actually start to check things like whether the nix daemon was actually running, I'll come back if I get stuck again
<kyren> clever++
<{^_^}> clever's karma got increased to 214
__monty__ has quit [Quit: leaving]
erasmas has quit [Quit: leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70674 → padthv1: 0.9.9 -> 0.9.10 → https://git.io/JeWfW
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Astralix9 has quit [Ping timeout: 276 seconds]
m0rphism has quit [Ping timeout: 265 seconds]
millerj has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #70675 → cbatticon: 1.6.9 -> 1.6.10 → https://git.io/JeWf4
millerj has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @dtzWill merged pull request #69055 → linuxPackages.fwts-efi-runtime: init → https://git.io/Je3Ls
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JeWfE
<{^_^}> [nixpkgs] @dtzWill merged pull request #68916 → health-check: init at 0.03.02 → https://git.io/JeWfz
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to master: https://git.io/JeWfg
<{^_^}> [nixpkgs] @dtzWill merged pull request #68912 → xorg.libXfont2: 2.0.3 -> 2.0.4 → https://git.io/JeWfa
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JeWfV
<{^_^}> [nixpkgs] @dtzWill merged pull request #68911 → power-calibrate: init at 0.01.28 → https://git.io/JeWfr
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to master: https://git.io/JeWfo
<{^_^}> [nixpkgs] @jonringer merged pull request #70667 → pythonPackages.devpi-common: 3.3.2 -> 3.4.0 → https://git.io/JeCjm
<{^_^}> [nixpkgs] @jonringer pushed commit from @makefu to master « pythonPackages.devpi-common: 3.3.2 -> 3.4.0 »: https://git.io/JeWfK
<{^_^}> [nixpkgs] @r-ryantm opened pull request #70676 → postgresql11Packages.pg_repack: 1.4.4 -> 1.4.5 → https://git.io/JeWf6
<stepcut> in `nix repl` I can run `let pkgs = import <nixpkgs> {}; in pkgs.haskell.packages.ghc865.aeson.buildInputs` to get the direct build dependencies of aeson. But is there a simple way to get the transitive closure of its dependencies' dependencies?
millerj has joined #nixos
gyroninja has joined #nixos
bvdw has joined #nixos
<{^_^}> [nixpkgs] @dtzWill merged pull request #68077 → xorg.{xbacklight,xlock,libICE}: bump → https://git.io/fjhYc
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to staging: https://git.io/JeWfN
millerj has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @dtzWill merged pull request #68071 → xorgproto: 2018.4 -> 2019.1 → https://git.io/fjhYt
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to staging: https://git.io/JeWfh
<{^_^}> [nixpkgs] @dtzWill merged pull request #68069 → xorg.libXt: 1.1.5 -> 1.2.0 → https://git.io/fjhYT
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to staging: https://git.io/JeWJe
<{^_^}> [nixpkgs] @dtzWill merged pull request #68075 → setxkbmap: 1.3.1 -> 1.3.2 → https://git.io/fjhYZ
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JeWJJ
freeman42x has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dtzWill merged pull request #68902 → linuxPackages*.turbostat: init → https://git.io/JeWJI
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JeWJL
iqubic has joined #nixos
<{^_^}> [nixpkgs] @dtzWill merged pull request #68078 → shadow: 4.6 -> 4.7 → https://git.io/fjhYW
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to staging: https://git.io/JeWJY
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
domogled has quit [Quit: domogled]
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dtzWill opened pull request #70677 → nnn: 2.5 -> 2.7 → https://git.io/JeWJ3
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
millerj has joined #nixos
tmplt has quit [Quit: leaving]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dtzWill opened pull request #70678 → aspellDicts,hunspellDicts: misc updates (en_*) → https://git.io/JeWJZ
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
<{^_^}> [nix] @ekarakey opened pull request #3123 → deleted comment → https://git.io/JeWJc
millerj has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @dtzWill opened pull request #70679 → ktorrent: mkDerivation → https://git.io/JeWJW
<{^_^}> [nixpkgs] @dtzWill opened pull request #70680 → krita: 4.2.6 -> 4.2.7.1 → https://git.io/JeWJ8
<{^_^}> [nixpkgs] @dtzWill opened pull request #70681 → barrier: 2.3.1 -> 2.3.2 → https://git.io/JeWJR
<{^_^}> [nixpkgs] @dtzWill opened pull request #70682 → entr: 4.2 -> 4.3, pname → https://git.io/JeWJ0
kleisli has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @mtrsk closed pull request #70432 → ranger: add video and pdf preview options → https://git.io/JeCUa
<{^_^}> [nixpkgs] @dtzWill opened pull request #70683 → systemd: fix /sbin/modprobe usage in logind, nspawn@ service files → https://git.io/JeWJz
Boomerang has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer opened pull request #70684 → pythonPackages.cloudpickle: 0.8.1 -> 1.2.2 → https://git.io/JeWJV
Rusty1 has quit [Quit: WeeChat 1.4]
freeman42x has joined #nixos
freeman42xx has joined #nixos
freeman42x has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dtzWill merged pull request #70249 → libpcap, tcpdump: 1.9.1 and 4.9.3 for many security fixes → https://git.io/Jecvy
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to staging: https://git.io/JeWJi
drakonis has quit [Ping timeout: 240 seconds]
drakonis has joined #nixos
<{^_^}> [nixpkgs] @dtzWill merged pull request #68051 → libnl: 3.4.0 -> 3.5.0, drop musl patch → https://git.io/fjhm3
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to staging: https://git.io/JeWJ1
<{^_^}> [nixpkgs] @Infinisil opened pull request #70685 → mumble/murmur: Fix .override not working → https://git.io/JeWJM
kalloc has joined #nixos
growpotkin has joined #nixos
mbrgm_ has joined #nixos
growpotk- has joined #nixos
mbrgm has quit [Ping timeout: 264 seconds]
mbrgm_ is now known as mbrgm
drakonis1 has joined #nixos