gchristensen changed the topic of #nixos to: NixOS stable: 18.09, beta: 19.03 https://discourse.nixos.org/t/nixos-19-03-feature-freeze/1950 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2018
mbrgm has joined #nixos
mbrgm has joined #nixos
mbrgm has quit [Changing host]
<mekeor> clever: what are we doing?
<clever> mekeor: looking for the path of which, how did R get that path to pass it to execve
kvda has joined #nixos
<ar1a> as of like 1 minute ago
jluttine has joined #nixos
<mekeor> clever: shouldn't the path to the `which` binary be replaced with ~/.nix-profile/bin/which or so?
<clever> mekeor: oh, R is just a bash script, we want to read that, and run strings on something else
<clever> ah, the one you showed above
<clever> result/lib/R/bin/exec/R: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /nix/store/681354n3k44r8z90m35hm8945vsp95h1-glibc-2.27/lib/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, not stripped
<clever> libR.so => not found
<ar1a> for anyone following along at home i made #58987 and thats it for today
<{^_^}> https://github.com/NixOS/nixpkgs/issues/58987 (by ar1a, 3 minutes ago, open): discord-haskell marked as broken, dependencies too strict?
<clever> result/lib/R/lib/libR.so
<clever> [clever@amd-nixos:~]$ strings result/lib/R/lib/libR.so | grep which --color
<clever> mekeor: i see some mentions of which, but not the storepath that is giving trouble
wolfman154 has quit [Quit: Mutter: www.mutterirc.com]
<mekeor> clever: me neither
<clever> [pid 21207] execve("/bin/sh", ["sh", "-c", "/nix/store/gzr90dn7yygxa40i90wnh"...], 0x21d8ab0 /* 92 vars */ <unfinished ...>
<clever> [pid 21208] execve("/nix/store/gzr90dn7yygxa40i90wnh7r9g06pfd43-which-2.21/bin/which", ["/nix/store/gzr90dn7yygxa40i90wnh"..., "sh"], 0x2329008 /* 93 vars */) = 0
<mekeor> what's that?
<clever> mekeor: the result of running strace without any filter
dhkl has joined #nixos
thc202 has quit [Ping timeout: 268 seconds]
<clever> mekeor: cant see how its finding that string
<mekeor> clever: isn't it just hard-coded?
<clever> mekeor: that string doesnt appear anywhere in the binary
<mekeor> clever: maybe it's because of the data structure used by R for strings? mmmh
<clever> mekeor: that could be it, we will need to research that
<mekeor> clever: actually, the strings is part of the base library
<mekeor> it's not part of the binary
<mekeor> s/strings/string/
<clever> mekeor: its not in any library the R binary depends on either
<mekeor> clever: it's an R library which is loaded by the R binary though
<mekeor> how do you know it's not in *any* library?
<clever> [clever@amd-nixos:~]$ nix-build '<nixpkgs>' -A R
<clever> [clever@amd-nixos:~]$ grep -r --color "gzr90dn7yygxa40i90wn" $(nix-store -qR result)
<clever> mekeor: that will search every path that R depends on, and every file in those paths
<clever> no results are found anywhere
<mekeor> clever: i'd guess that it doesn't depend on any library in the sense of being linked to it. it just kind of loads the base R library which is part of the R package itself
<clever> mekeor: what path is that base library at?
<clever> lrwxrwxrwx 1 clever users 51 Apr 4 21:14 result -> /nix/store/qkvh3q7076dk3bhb69s9cp6ksl78mf41-R-3.5.2
<mekeor> maybe /nix/store/...-R-3.5.1/lib/R/library/base/R/base
<mekeor> (i'm using 3.5.1 just like nixos-18.09 channel but there is no difference to master-branch)
<clever> mekeor: thats in the same directory as the R binary, so the grep i did would have checked it
<clever> same store path*
<mekeor> clever: but there is also the R-wrapper package
<mekeor> no sorry, that was trash
<clever> [clever@amd-nixos:~]$ ls -lh result/bin/R result/lib/R/bin/exec/R result/lib/R/library/base/R/base*
d10n-work has quit [Quit: Connection closed for inactivity]
<clever> mekeor: ````which` does not appear in annnny of those files
<mekeor> (but there is something like /nix/store/...-R-3.5.1-wrapper/bin/R though)
<mekeor> hmmmmmmmm
Jetien_ has joined #nixos
iceypoi has quit [Remote host closed the connection]
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
<clever> [clever@amd-nixos:~]$ nix-store --dump /nix/store/qkvh3q7076dk3bhb69s9cp6ksl78mf41-R-3.5.2 | hexdump -C | less
<clever> mekeor: oh, this may help, to check every file at once
dhkl has quit [Ping timeout: 245 seconds]
acham has quit [Ping timeout: 256 seconds]
<clever> [clever@amd-nixos:~]$ nix-store --dump /nix/store/qkvh3q7076dk3bhb69s9cp6ksl78mf41-R-3.5.2 | strings -e b
<clever> Camera RGB Profile
<clever> Officejet Pro 8500 A909g
<clever> mekeor: i can see a few 16bit big-endian strings
<clever> [clever@amd-nixos:~]$ nix-store --dump /nix/store/qkvh3q7076dk3bhb69s9cp6ksl78mf41-R-3.5.2 | strings -e l
<clever> Proof Setup
<clever> Rlogo
<clever> mekeor: and some 16bit little-endian ones
Jetien__ has quit [Ping timeout: 245 seconds]
<mekeor> holy shit, wow, cool, nice!
<clever> [clever@amd-nixos:~]$ nix-store --dump /nix/store/qkvh3q7076dk3bhb69s9cp6ksl78mf41-R-3.5.2 | strings -e L
<clever> %a %b %e %H:%M:%S %Y
<clever> January
<clever> mekeor: and even some 32bit little-endian ones!!
<mekeor> clever: how do i produce the ./result folder?
<ar1a> nix-build
<clever> mekeor: nix-build '<nixpkgs>' -A R
<mekeor> thanks :)
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/fjLcn
<mekeor> clever: but i can't find the path to /nix/store/...-which-/bin/which in any of those strings
<mekeor> do you?
<clever> mekeor: nope, i also cant find it
<clever> yet R is somehow coming up with that path, to run execve
<clever> ans <- suppressWarnings(system(paste(which, shQuote(names[i])),
<clever> its using system(), that is a glibc function to run "sh" "-c" "...."
<clever> and then leave args splitting up to sh
<clever> strace agrees with that
Qubasa has quit [Read error: Connection reset by peer]
<mekeor> how can i ensure that the path to `which` is correct during run-time?
<clever> [clever@amd-nixos:~]$ nix-shell -p
<mekeor> s/ i / we /
<clever> mekeor: the problem, is that the path IS currect, but nix doesnt see the string in the binary
<clever> mekeor: so which isnt a runtime dep, and nix wont install which for you
<clever> [nix-shell:~]$ objdump -d result/lib/R/bin/exec/R
<clever> `system` doesnt appear in that file
Qubasa has joined #nixos
gentauro has quit [Read error: Connection reset by peer]
<clever> [nix-shell:~]$ objdump -d result/lib/R/lib/libR.so | less
gentauro has joined #nixos
<clever> `system` does appear here
<clever> now to compare it against the src you linked...
zaphar_ps[m] has joined #nixos
<mekeor> couldn't we just tell nix manually that `which` is a run-time dep of R?
matix has quit [Quit: :q!]
erasmus has quit [Quit: #sad]
<clever> mekeor: you can do that, just by doing `echo ${which} > $out/nix-support/ugly-hack` in the postInstall hook
<{^_^}> [nixpkgs] @worldofpeace opened pull request #58988 → [19.03] deepin updates (#58634) → https://git.io/fjLc0
kreisys has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<clever> mekeor: that just stops the compiler from looking under /usr/local/include/
<mekeor> ah, i see :/
<clever> mekeor: where was the pastebin with the generated file, after @WHICH@ was sapped?
Notkea has quit [Read error: Connection reset by peer]
Notkea has joined #nixos
<mekeor> clever: http://sprunge.us/21Zs78
<mekeor> nope, mistaken, sorry
<mekeor> this one, clever
<clever> which <- "/nix/store/ckd1dy6llxr1s17f9x27p9jwzdanl5yx-which-2.21/bin/which"
<clever> mekeor: what exactly is the <- syntax doing here?
jasongrossman has joined #nixos
dhkl has joined #nixos
<clever> [clever@amd-nixos:~]$ grep -r --color 'was not found on this platform' result/
<clever> Binary file result/lib/R/library/translations/pl/LC_MESSAGES/R-base.mo matches
<clever> mekeor: ok, this is even more puzzling, the error messages dont appear in any library or executable, only the translation files
<mekeor> clever: it's an assignment. just like `=` in other languages.
<clever> yet it appears in all translation files, so the english string is a key used for lookups
<clever> so how is the lib even containing that string, to do the lookup!?
<mekeor> strange
dbmikus has quit [Ping timeout: 255 seconds]
GalzuFromQ has joined #nixos
* mekeor is trying out the dirty hack workaround
siel has joined #nixos
<clever> mekeor: this is reminding me of reverse engineering malware that doesnt want to be debugged, lol
<GalzuFromQ> Why does this chan come up when I do a search for "arch"... I don't see it in the description...
<clever> GalzuFromQ: aarch64 is in the /topic
<GalzuFromQ> Got it.
<GalzuFromQ> " #nixos-aarch64"... I had to ctrl+f for it.
<GalzuFromQ> I'm curious about this distro though, since Manjaro and Arch users are a bunch of tight asses.
<GalzuFromQ> I say "that's gay" and "fuuuuck", and they banned me.
<GalzuFromQ> After cursing me out.
<gchristensen> GalzuFromQ: you will probably not find that sort of behavior very acceptable here, either
<GalzuFromQ> Anyone know of a good frontend for 7zip?
<GalzuFromQ> gchristensen, well I'll dial it back.
<clever> GalzuFromQ: nixos is basically taking the "compile everything" ideas from things like gentoo and maybe arch, but making things better and solving a lot of issues that gentoo style OS's can have
<GalzuFromQ> I have a disorder where I forget to filter my words sometimes.
<mekeor> GalzuFromQ: "that's gay" is not nice to say; it could be interpreted as homophobic
<buckley310> GalzuFromQ: file-roller can open .7z files
<gchristensen> mekeor++
<{^_^}> mekeor's karma got increased to 2
<GalzuFromQ> Well, I used Gentoo in the early 2000's, built it from bootstrap... I am a sysadmin of 18+ years. Worked for webhosting providers, software development companies, security companies and financial companies.
<GalzuFromQ> Ok buckley310, file roller was renamed through?
<buckley310> GalzuFromQ: the display name is "archive manager" but the binary is still named file-roller
<GalzuFromQ> It's coming back as "archive manager", I used to use File Roller years ago.
<mekeor> clever: your dirty-hack workaround works! :)
<GalzuFromQ> Yeah my first distro was Slackware 7 I think.
<buckley310> `gnome3.file-roller` is the package containing it
<GalzuFromQ> Hmm...
<mekeor> clever: thank you very much though!
<GalzuFromQ> Anyone ever used Peazip?
<clever> mekeor: i suspect this is a design issue with the R language, and will plague every single R package
<GalzuFromQ> ty clever good description.
<GalzuFromQ> mekeor, I understand and I'm not phobic, we just used to say it a lot when we were younger.
rcshm has quit [Ping timeout: 245 seconds]
<GalzuFromQ> My sister, about five close friends and one of my best friends are homosexual.
<GalzuFromQ> It looks like Manjaro ... jacked up a version of file roller.
<mekeor> clever: would it make sense to use your dirty hack workaround in this case?
<gchristensen> (for what it is worth, I've PM'd with GalzuFromQ to let them know we're serious that comments like "that's gay" and regular profanities aren't appropriate or appreciated here, and asked them to try hard to remain respectful of our diverse community.)
<mekeor> cool :)
<mekeor> gchristensen++
<{^_^}> gchristensen's karma got increased to 97
<GalzuFromQ> :)
<clever> mekeor: yeah
msko has quit [Quit: WeeChat 2.4]
<GalzuFromQ> I really prefer ports to any package management system.
<mabel> hey, I'm getting a really weird issue compiling python
erasmus has joined #nixos
<mabel> it's yelling at me because it doesn't recognize the @ in "@lib" in unix64.S when compiling libffi for ctypes
dhkl has quit [Ping timeout: 246 seconds]
<mabel> I'm doing this for a package I'm packaging, which compiles its own special python, so I'd like not to change their cmake if possible, but I have no idea what's going on
<mabel> is it some kind of cross-compilation issue? gcc?
dhkl has joined #nixos
<mabel> there's nothing on google about it >_<
<mabel> /nix/store/ghzg4kg0sjif58smj2lfm2bdvjwim85y-gcc-wrapper-7.4.0/bin/gcc -Dextension_ctypes_EXPORTS -I/home/mabel/scratch/src/out/Python-2.7.13/Include -I/home/mabel/scratch/src/out/python-build/bin -I/home/mabel/scratch/src/out/Python-2.7.13/Python -I/home/mabel/scratch/src/out/Python-2.7.13/Modules/_ctypes/libffi/src/x86 -I/home/mabel/scratch/src/out/Python-2.7.13/Modules/_ctypes/libffi/include
<mabel> -I/home/mabel/scratch/src/out/python/cmake -O3 -DNDEBUG -fPIC -o CMakeFiles/extension_ctypes.dir/home/mabel/scratch/src/out/Python-2.7.13/Modules/_ctypes/libffi/src/x86/unix64.S.o -c /home/mabel/scratch/src/out/Python-2.7.13/Modules/_ctypes/libffi/src/x86/unix64.S
<{^_^}> [nixpkgs] @rhokue opened pull request #58989 → R: Workaround to make `which` a run-time dependency → https://git.io/fjLCk
<mekeor> clever: are you a maintainer or so by coincidence? i created a PR at https://github.com/NixOS/nixpkgs/pull/58989
<{^_^}> #58989 (by rhokue, 27 seconds ago, open): R: Workaround to make `which` a run-time dependency
<clever> mekeor: only of a few things, but i dont know anything about R
dhkl has quit [Ping timeout: 245 seconds]
dhkl has joined #nixos
work_ has quit [Quit: Connection closed for inactivity]
Supersonic has quit [Disconnected by services]
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
slack1256 has joined #nixos
<GalzuFromQ> I kinda miss dependency ...
<GalzuFromQ> Dependency frustrations.
<{^_^}> [nixpkgs] @Mic92 merged pull request #58982 → pdns-recursor: 4.1.11 -> 4.1.12 → https://git.io/fjL3J
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/fjLCc
psy3497 has joined #nixos
psy3497 has left #nixos [#nixos]
<mabel> oh, apparently I need to specify --with-system-ffi
eyJhb has quit [Quit: Bye]
eyJhb has joined #nixos
<{^_^}> [nixpkgs] @Mic92 pushed to master « tests/pdns-recursor: use waitForOpenPort as port check »: https://git.io/fjLCB
npmccallum has quit [Ping timeout: 250 seconds]
<buckley310> anyone here good with gem bundling? I've been trying to push this upstream since I use it myself, but it keeps breaking and i don't have the know-how to debug it properly. it seems like a bug in bundlerEnv to me? https://github.com/NixOS/nixpkgs/pull/54405
<{^_^}> #54405 (by buckley310, 10 weeks ago, open): metasploit: 4.16.1 -> 5.0.1
<buckley310> basically i bumped the version, but every time the metasploit project releases a new version, the copy that gets pulled down has a different hash because it leaves ".git" folder in the output :\
dhkl has quit [Ping timeout: 246 seconds]
<jasongrossman> buckley310: I think manveru knows about gem bundling, and he's on here fairly often.
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/91fa6990b25 (from 28 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
<manveru> buckley310: the culprit is most likely https://github.com/manveru/bundix/blob/master/lib/bundix/source.rb#L78 the --leave-dotGit (which is required for some gems...)
<manveru> i gotta get some sleep, but if you could try bundix without that flag for metasploit and make an issue in bundix before i get to it, i'd be greatful :)
<manveru> we can at least provide a bundix flag to disable this if it helps
GalzuFromQ has left #nixos ["Leaving"]
<buckley310> i dont think that flag is used anywhere in the build process, let me check on that...
<manveru> (also needs to go into gemset and bundlerEnv has to handle it... now that i think of it
<buckley310> yeah, generating the files is just `bundler install && bundix`
<manveru> no need for bundle install
<manveru> `nix-shell -p bundler --run 'bundle lock'` should suffice
<buckley310> okay, ill see what that does
georges has quit [Ping timeout: 245 seconds]
<manveru> you don't want all the deps in your nix-shell just to update a lockfile :)
<manveru> anw, i checked bundlerEnv, and it doesn't seem to use leaveDotGit
silver_ has quit [Read error: Connection reset by peer]
<manveru> it actually makes a fake git repo during the build :P
<manveru> so yeah, should work in theory
<manveru> gn8
<buckley310> giving it a try with the snippet from above
srl295 has quit [Quit: Connection closed for inactivity]
jasongro` has joined #nixos
jasongrossman has quit [Ping timeout: 268 seconds]
piku has joined #nixos
georges has joined #nixos
jasongro` has quit [Quit: ERC (IRC client for Emacs 26.1)]
detran has joined #nixos
Qubasa has quit [Ping timeout: 246 seconds]
Qubasa has joined #nixos
<mabel> how do I make a hardlink as a build step?
<buckley310> i dont think you can, hardlinking is a root-only privilege, right?
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
sigmundv has quit [Ping timeout: 246 seconds]
<buckley310> i think you can only symlink or copy
dhkl has joined #nixos
<Cale> Really? Hardlinking is root only?
rcshm has joined #nixos
<jackdk> nope
<simpson> mabel: What happens if you just do it? I'd go with a try-it-and-see strategy.
<buckley310> correction, you cannot link to root-owned files as non-root
i1nfusion has quit [Remote host closed the connection]
i1nfusion has joined #nixos
<buckley310> (and builds dont run as root)
tuelz has joined #nixos
<tuelz> does nix support options to start a system daemon when entering a projects sub-shell?
<tuelz> for example, if my project needs mysql, is there a way to declare when opening a shell for that project it'll make sure mysqld.service is started?
<clever> tuelz: not directly, but the shellHook string is evaled in bash when you open nix-shell
<clever> your free to just run whatever you want there
<clever> though some users may be upset if you do things like `sudo rm -rf /` :P
htc^ has quit []
blankhart has joined #nixos
pbb has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
vsss has joined #nixos
pbb has joined #nixos
buffet has joined #nixos
buffet_ has quit [Ping timeout: 255 seconds]
jasongrossman has joined #nixos
<{^_^}> [nixpkgs] @AesaKamar opened pull request #58990 → openjdk8 → https://git.io/fjLWJ
<tuelz> heh, noted
<clever> tuelz: the difficult part there, is actually starting mysqld.service
<glenndavy> OK, question - in single user mode, does anyone have a notion what it takes for nix-build to be able to use private git repos as a source?
<clever> tuelz: but it may be simpler to just run your own mysqld directly, with a non-standard path for its unix socket
<clever> glenndavy: builtins.fetchGit
<glenndavy> so, this is pulling gems as per bundix/gemset.nix
<glenndavy> bundix uses `nix-prefetch-git`
<glenndavy> which works find in nix-shell directly
<glenndavy> but not when called from nix-build
<glenndavy> (sorry i think i meant nix-build uses nix-prefetch-git)
<clever> glenndavy: you want to edit the nix files to use builtins.fetchGit instead of pkgs.fetchgit
stepcut has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @AesaKamar closed pull request #57535 → scalafmt: 1.5.1 -> 2.0.0-RC5 → https://git.io/fhjQP
<glenndavy> ok am confused, which nix files? the two that are in my project are default.nix and the bundix generated gemset.nix - neither use fetchgit
stepcut has joined #nixos
drakonis has quit [Ping timeout: 244 seconds]
<clever> glenndavy: which file does the name of your private repo appear in?
<glenndavy> gemset.nix
detran has quit [Quit: ERC (IRC client for Emacs 26.1)]
stepcut has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @AesaKamar opened pull request #58991 → scalafmt: 1.5.1 -> 2.0.0-RC5 → https://git.io/fjLWL
<clever> glenndavy: what function is being used to fetch?
stepcut has joined #nixos
drakonis has joined #nixos
<glenndavy> well, if i follow through the source code, of bundix, and if i understand what i’m reading, its using nix-prefetch-git
<clever> glenndavy: nix-prefetch-git isnt used directly by nix-build
dhkl has quit [Ping timeout: 255 seconds]
<glenndavy> no, i think nix-build is calling bundix to use it
slack1256 has quit [Remote host closed the connection]
<clever> glenndavy: can you pastebin the gemset.nix?
siel has quit [Ping timeout: 250 seconds]
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<glenndavy> here’s a typical example:
Kumool has joined #nixos
<clever> glenndavy: lines 6-12 looks like the arguments to pkgs.fetchgit, so whatever this gets passed to, must be modified to use builtins.fetchGit instead
<glenndavy> hmm, ok, i’ll raise an issue on the bunix repo
stepcut has quit [Ping timeout: 245 seconds]
<glenndavy> at manveru any thoughts? ^^
Mateon2 has quit [Ping timeout: 246 seconds]
Mateon2 has joined #nixos
detran has joined #nixos
stepcut has joined #nixos
kvda has joined #nixos
Mateon2 is now known as Mateon1
MinceR_ has joined #nixos
siel has joined #nixos
siel has joined #nixos
siel has quit [Changing host]
MinceR has quit [Ping timeout: 250 seconds]
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 [Ping timeout: 245 seconds]
detran_ has joined #nixos
detran has quit [Quit: ERC (IRC client for Emacs 26.1)]
piku has left #nixos ["Leaving"]
msko has joined #nixos
winsome has joined #nixos
msko has quit [Client Quit]
msko has joined #nixos
msko has quit [Client Quit]
msko has joined #nixos
i1nfusion has quit [Remote host closed the connection]
i1nfusion has joined #nixos
msko has quit [Quit: WeeChat 2.4]
<{^_^}> [nixpkgs] @veprbl opened pull request #58992 → herwig: 7.1.4 -> 7.1.5 → https://git.io/fjLWK
npmccallum has joined #nixos
msko has joined #nixos
judson has joined #nixos
msko has quit [Quit: WeeChat 2.4]
msko has joined #nixos
msko has quit [Client Quit]
msko has joined #nixos
msko has quit [Client Quit]
msko has joined #nixos
winsome has left #nixos ["ERC (IRC client for Emacs 26.1)"]
<{^_^}> [nixpkgs] @bb010g opened pull request #58993 → mpv: patch libarchive locale handling → https://git.io/fjLWS
msko has quit [Quit: WeeChat 2.4]
blankhart has quit [Quit: WeeChat 1.9.1]
msko has joined #nixos
msko has quit [Client Quit]
detran_ is now known as detran
ToxicFrog has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @zookatron opened pull request #58994 → sublime-merge: init at 1107 → https://git.io/fjLW5
ToxicFrog has joined #nixos
drakonis1 has quit [Quit: WeeChat 2.3]
liori has quit [Read error: Connection reset by peer]
biopandemic has quit [Read error: Connection reset by peer]
mconstant has joined #nixos
orivej has joined #nixos
OmnipotentEntity has joined #nixos
<OmnipotentEntity> I am trying to set up latex on my box, I installed texlive.combined.scheme-full, but when I attempt to use latexmk to generate my document I get an error regarding the font Carlito-Regular. Where can I find this font?
<OmnipotentEntity> excuse my idiocy the package name is simply "Carlito" I was searching for it as if it was part of TexLive, which is why I missed it completely
<{^_^}> [nixpkgs] @worldofpeace pushed to gnome-3.32 « pantheon.elementary-settings-daemon: 3.30.2 -> 3.32.0 »: https://git.io/fjLle
Rusty1 has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @veprbl merged pull request #58991 → scalafmt: 1.5.1 -> 2.0.0-RC5 → https://git.io/fjLWL
<{^_^}> [nixpkgs] @veprbl pushed commit from @AesaKamar to master « scalafmt: 1.5.1 -> 2.0.0-RC5 (#58991) »: https://git.io/fjLlv
dbmikus has joined #nixos
wfranzini has quit [Remote host closed the connection]
<jasongrossman> omnipotententity: I wouldn't call that idiocy.
erasmus has quit [Quit: END-AUMF]
lovesegfault has joined #nixos
tboston_ has joined #nixos
Glider_IRC__ has joined #nixos
<{^_^}> [nixpkgs] @matthewbauer merged pull request #58958 → lldb: install vscode plugin; vscode-extensions: add it → https://git.io/fjLv4
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjLlm
palo1 has joined #nixos
Glider_IRC_ has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/4aeafc6b63f (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
palo has quit [Ping timeout: 246 seconds]
palo1 is now known as palo
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kvda has joined #nixos
endformationage has quit [Ping timeout: 245 seconds]
fragamus has joined #nixos
fragamus has quit [Ping timeout: 250 seconds]
tboston_ has quit [Ping timeout: 246 seconds]
reinhardt has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace opened pull request #58995 → vscode: 1.32.3 -> 1.33.0 → https://git.io/fjLlX
leat1 has quit [Quit: WeeChat 2.3]
hyper_ch2 has joined #nixos
eyJhb is now known as eyJhb
<eyJhb> infinisil: I am comming for you! All code reviewers want different kinds of patches
Myhlamaeus has quit [Ping timeout: 264 seconds]
lielazivee has joined #nixos
rprije has quit [Ping timeout: 245 seconds]
Myhlamaeus has joined #nixos
MinceR_ is now known as MinceR
klntsky has quit [Remote host closed the connection]
klntsky has joined #nixos
<hyper_ch2> I'd like to have chocolated coated, crispy patches
<lielazivee> In nix-channels I have [nixpkgs ~ nixpkgs-unstable] and [nixpkgs-18.09-darwin ~ nixpkgs-18.09-darwin]. When I use nix-build, I'm somewhat sure the unstable channel is used and I think it's breaking the build. Is there a way how I can make the 18.09 channel default?
<eyJhb> hyper_ch2: you stay away from my PR! I cannot do that! :(
vmandela has joined #nixos
dhkl has joined #nixos
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<hyper_ch2> what PR is it?
AntonSchirg[m] has quit [Remote host closed the connection]
utdemir[m] has quit [Remote host closed the connection]
sierraDelta has quit [Remote host closed the connection]
jmchapman[m] has quit [Remote host closed the connection]
MayeulC has quit [Remote host closed the connection]
moope[m] has quit [Remote host closed the connection]
craige[m] has quit [Remote host closed the connection]
bpye has quit [Remote host closed the connection]
Dan[m]4 has quit [Remote host closed the connection]
marko[m] has quit [Remote host closed the connection]
ejpcmac has quit [Write error: Connection reset by peer]
WilliamHamilton[ has quit [Write error: Connection reset by peer]
jyvrmn2[m] has quit [Read error: Connection reset by peer]
ststefa[m] has quit [Read error: Connection reset by peer]
M-owo-[m] has quit [Remote host closed the connection]
stammon has quit [Read error: Connection reset by peer]
bobmolson[m] has quit [Write error: Connection reset by peer]
YanMinari[c][m] has quit [Remote host closed the connection]
ptotter[m] has quit [Read error: Connection reset by peer]
cejota[m] has quit [Write error: Connection reset by peer]
benwaffle[m] has quit [Remote host closed the connection]
dmitry-zen[m] has quit [Remote host closed the connection]
Criena[m] has quit [Remote host closed the connection]
Josh[m] has quit [Remote host closed the connection]
JaredM[m] has quit [Remote host closed the connection]
sphalerit has quit [Remote host closed the connection]
ponpinu[m] has quit [Remote host closed the connection]
dkellner[m] has quit [Remote host closed the connection]
lycium[m] has quit [Read error: Connection reset by peer]
Noughtmare[m] has quit [Write error: Connection reset by peer]
travelion[m] has quit [Remote host closed the connection]
aissat[m] has quit [Remote host closed the connection]
thaddeusmaddeus[ has quit [Write error: Connection reset by peer]
roberth has quit [Read error: Connection reset by peer]
spacekitteh[m] has quit [Write error: Connection reset by peer]
dtz has quit [Read error: Connection reset by peer]
BinkyTheClown has quit [Remote host closed the connection]
aaronduino[m] has quit [Read error: Connection reset by peer]
timclassic has quit [Read error: Connection reset by peer]
lurpahi has quit [Write error: Connection reset by peer]
kaychaks[m] has quit [Write error: Connection reset by peer]
sneknek[m] has quit [Read error: Connection reset by peer]
fearlessKim[m] has quit [Read error: Connection reset by peer]
theseriousadult[ has quit [Read error: Connection reset by peer]
leons has quit [Remote host closed the connection]
magnap has quit [Read error: Connection reset by peer]
timokau[m] has quit [Read error: Connection reset by peer]
copy` has quit [Read error: Connection reset by peer]
teh[m] has quit [Read error: Connection reset by peer]
MiloIgnis[m] has quit [Read error: Connection reset by peer]
tbenst[m] has quit [Read error: Connection reset by peer]
sjy[m] has quit [Read error: Connection reset by peer]
domenkozar[m] has quit [Remote host closed the connection]
offlinehacker has quit [Read error: Connection reset by peer]
abbafei[m] has quit [Read error: Connection reset by peer]
fgaz has quit [Read error: Connection reset by peer]
bkl[m] has quit [Read error: Connection reset by peer]
henrytill[m] has quit [Remote host closed the connection]
uvnikita[m] has quit [Remote host closed the connection]
musicmatze has quit [Remote host closed the connection]
hackeryarn[m] has quit [Remote host closed the connection]
corpix[m] has quit [Remote host closed the connection]
Purple-mx has quit [Remote host closed the connection]
snupples[m] has quit [Remote host closed the connection]
codyopel has quit [Remote host closed the connection]
therealwaphire[m has quit [Remote host closed the connection]
vaibhavsagar has quit [Remote host closed the connection]
bb010g has quit [Read error: Connection reset by peer]
Seb[m]1 has quit [Write error: Connection reset by peer]
capslock3[m] has quit [Read error: Connection reset by peer]
peter2121[m] has quit [Read error: Connection reset by peer]
bkchr has quit [Read error: Connection reset by peer]
luftmensch[m] has quit [Remote host closed the connection]
smolboye[m] has quit [Remote host closed the connection]
asthma[m] has quit [Remote host closed the connection]
nocent has quit [Remote host closed the connection]
wolfman12345[m] has quit [Read error: Connection reset by peer]
alj[m] has quit [Remote host closed the connection]
alienpirate5 has quit [Remote host closed the connection]
balsoft[m] has quit [Remote host closed the connection]
iraems[m] has quit [Remote host closed the connection]
bobvanderlinden_ has quit [Remote host closed the connection]
sm[m] has quit [Remote host closed the connection]
juliendehos[m] has quit [Read error: Connection reset by peer]
bachp has quit [Read error: Connection reset by peer]
M0ddba11[m] has quit [Read error: Connection reset by peer]
das-g[m] has quit [Remote host closed the connection]
xenofungus[m] has quit [Remote host closed the connection]
hiroshi[m] has quit [Remote host closed the connection]
badmutex[m] has quit [Remote host closed the connection]
otini has quit [Remote host closed the connection]
clacke[m] has quit [Remote host closed the connection]
nh2[m] has quit [Remote host closed the connection]
yangm97 has quit [Read error: Connection reset by peer]
makaveli[m] has quit [Read error: Connection reset by peer]
bennofs[m] has quit [Read error: Connection reset by peer]
aquarial has quit [Read error: Connection reset by peer]
klDen[m] has quit [Remote host closed the connection]
AlexRice[m] has quit [Read error: Connection reset by peer]
siraben has quit [Read error: Connection reset by peer]
bee[m]1 has quit [Read error: Connection reset by peer]
exarkun has quit [Remote host closed the connection]
isgy[m] has quit [Remote host closed the connection]
Flip[m]1 has quit [Write error: Connection reset by peer]
attente[m] has quit [Write error: Connection reset by peer]
bricewge has quit [Remote host closed the connection]
Brio[m] has quit [Remote host closed the connection]
gallexme[m] has quit [Remote host closed the connection]
linarcx[m] has quit [Remote host closed the connection]
gudea[m] has quit [Remote host closed the connection]
contrun[m] has quit [Write error: Connection reset by peer]
neonfuz__ has quit [Write error: Connection reset by peer]
nbardiuk has quit [Remote host closed the connection]
escaP[m] has quit [Remote host closed the connection]
submoo[m] has quit [Write error: Connection reset by peer]
cornu has quit [Remote host closed the connection]
worldofpeace has quit [Remote host closed the connection]
infinisil-m has quit [Read error: Connection reset by peer]
jschievink[m] has quit [Remote host closed the connection]
nokomprendo[m] has quit [Remote host closed the connection]
IslandUsurper has quit [Remote host closed the connection]
kevincox[m] has quit [Remote host closed the connection]
atgo[m] has quit [Remote host closed the connection]
tfc[m] has quit [Remote host closed the connection]
Thinkofname[m] has quit [Remote host closed the connection]
attero[m] has quit [Remote host closed the connection]
cyberwolf[m][m] has quit [Remote host closed the connection]
olejorgenb[m] has quit [Remote host closed the connection]
zurdo has quit [Remote host closed the connection]
haslersn[m] has quit [Remote host closed the connection]
florianjacob has quit [Remote host closed the connection]
grahamc[m] has quit [Remote host closed the connection]
rnhmjoj has quit [Remote host closed the connection]
d_g[m] has quit [Remote host closed the connection]
Moredread[m] has quit [Remote host closed the connection]
jonge[m] has quit [Remote host closed the connection]
Tony[m]4 has quit [Remote host closed the connection]
jpo-joyent has quit [Read error: Connection reset by peer]
tokudan[m] has quit [Read error: Connection reset by peer]
<etu> lolmatrix
thefloweringash has quit [Remote host closed the connection]
metasyntactic[m] has quit [Remote host closed the connection]
pleeplop has quit [Remote host closed the connection]
malteof[m] has quit [Remote host closed the connection]
weebull[m] has quit [Remote host closed the connection]
mara[m] has quit [Remote host closed the connection]
zaphar_ps[m] has quit [Write error: Connection reset by peer]
macerbi[m] has quit [Remote host closed the connection]
icetan has quit [Remote host closed the connection]
matthewbauer has quit [Remote host closed the connection]
wak-work has quit [Remote host closed the connection]
sylvie[m] has quit [Remote host closed the connection]
laas has quit [Remote host closed the connection]
jak[m] has quit [Write error: Connection reset by peer]
Ericson2314 has quit [Remote host closed the connection]
tuxubuntu[m] has quit [Write error: Connection reset by peer]
sputny[m] has quit [Write error: Connection reset by peer]
benkerry[m] has quit [Read error: Connection reset by peer]
rdes[m] has quit [Read error: Connection reset by peer]
nyanloutre[m] has quit [Read error: Connection reset by peer]
zdisk[m] has quit [Remote host closed the connection]
hylshols7qui[m] has quit [Remote host closed the connection]
billsun has quit [Remote host closed the connection]
thequux[m] has quit [Remote host closed the connection]
momack2[m] has quit [Remote host closed the connection]
slabity has quit [Remote host closed the connection]
simbergm has quit [Write error: Connection reset by peer]
Dandellion[m] has quit [Write error: Connection reset by peer]
Vskilet has quit [Remote host closed the connection]
ninjatrappeur[m] has quit [Remote host closed the connection]
torched[m] has quit [Remote host closed the connection]
Barnabas[m] has quit [Write error: Connection reset by peer]
philipp[m] has quit [Write error: Connection reset by peer]
MerlinGttlinger[ has quit [Write error: Connection reset by peer]
sitischu[m] has quit [Write error: Broken pipe]
bbigras has quit [Remote host closed the connection]
Ralith has quit [Write error: Connection reset by peer]
melchips[m] has quit [Read error: Connection reset by peer]
rycee has quit [Read error: Connection reset by peer]
am3on[m] has quit [Write error: Connection reset by peer]
irdr has quit [Max SendQ exceeded]
glasserc has quit [Ping timeout: 246 seconds]
d1rewolf has quit [Ping timeout: 246 seconds]
vsss has quit [Ping timeout: 245 seconds]
d1rewolf has joined #nixos
vsss has joined #nixos
vsss has quit [Max SendQ exceeded]
vsss has joined #nixos
vsss has quit [Max SendQ exceeded]
vsss has joined #nixos
vsss has quit [Max SendQ exceeded]
irdr has joined #nixos
vsss has joined #nixos
lielazivee has quit [Ping timeout: 244 seconds]
glasserc has joined #nixos
jasongro` has joined #nixos
siel has joined #nixos
siel has joined #nixos
siel has quit [Changing host]
Myhlamaeus has quit [Ping timeout: 258 seconds]
lielazivee has joined #nixos
wfranzini has joined #nixos
jasongrossman has quit [Ping timeout: 268 seconds]
mog has quit [Ping timeout: 244 seconds]
cfricke has joined #nixos
jasongro` has quit [Remote host closed the connection]
florianjacob has joined #nixos
ckauhaus has joined #nixos
jasongrossman has joined #nixos
cfricke has quit [Quit: WeeChat 2.4]
cfricke has joined #nixos
jomik has joined #nixos
Ariakenom has joined #nixos
<jomik> I forgot where I could see the progress of release 19.03
m0rphism has joined #nixos
<jomik> Oh, noo, there was an overview of all the derivations that fails on 19.03
<jomik> Quite a bit on the milestone still I guess XD
lielazivee has quit [Ping timeout: 250 seconds]
cfricke has quit [Quit: WeeChat 2.4]
<{^_^}> [nixpkgs] @hrdinka merged pull request #58727 → nsd: 4.1.26 -> 4.1.27 → https://git.io/fjIIm
<{^_^}> [nixpkgs] @hrdinka pushed 2 commits to master: https://git.io/fjL84
mog has joined #nixos
civodul has joined #nixos
jomik has quit [Quit: WeeChat 2.4]
Havvy has quit [Read error: Connection reset by peer]
dbmikus has quit [Ping timeout: 268 seconds]
Havvy has joined #nixos
Yaniel has quit [Excess Flood]
wfranzini has quit [Read error: Connection reset by peer]
Yaniel has joined #nixos
wfranzini has joined #nixos
Tucky has joined #nixos
fgaz has joined #nixos
bennofs[m] has joined #nixos
bachp has joined #nixos
cornu has joined #nixos
Ericson2314 has joined #nixos
BinkyTheClown has joined #nixos
d_g[m] has joined #nixos
clacke[m] has joined #nixos
zurdo has joined #nixos
Dandellion[m] has joined #nixos
dtz has joined #nixos
bpye has joined #nixos
WilliamHamilton[ has joined #nixos
bb010g has joined #nixos
bkl[m] has joined #nixos
attero[m] has joined #nixos
benwaffle[m] has joined #nixos
copy` has joined #nixos
attente[m] has joined #nixos
bobvanderlinden_ has joined #nixos
abbafei[m] has joined #nixos
alj[m] has joined #nixos
Barnabas[m] has joined #nixos
mara[m] has joined #nixos
bbigras has joined #nixos
aquarial has joined #nixos
Noughtmare[m] has joined #nixos
laas has joined #nixos
am3on[m] has joined #nixos
M0ddba11[m] has joined #nixos
alienpirate5 has joined #nixos
dkellner[m] has joined #nixos
cejota[m] has joined #nixos
aissat[m] has joined #nixos
capslock3[m] has joined #nixos
MiloIgnis[m] has joined #nixos
das-g[m] has joined #nixos
bkchr has joined #nixos
craige[m] has joined #nixos
escaP[m] has joined #nixos
cyberwolf[m][m] has joined #nixos
simbergm has joined #nixos
olejorgenb[m] has joined #nixos
ptotter[m] has joined #nixos
leons has joined #nixos
exarkun has joined #nixos
ejpcmac has joined #nixos
nyanloutre[m] has joined #nixos
philipp[m] has joined #nixos
kaychaks[m] has joined #nixos
Moredread[m] has joined #nixos
nh2[m] has joined #nixos
MerlinGttlinger[ has joined #nixos
jak[m] has joined #nixos
momack2[m] has joined #nixos
IslandUsurper has joined #nixos
melchips[m] has joined #nixos
moope[m] has joined #nixos
lycium[m] has joined #nixos
klDen[m] has joined #nixos
codyopel has joined #nixos
jmchapman[m] has joined #nixos
hiroshi[m] has joined #nixos
matthewbauer has joined #nixos
nocent has joined #nixos
isgy[m] has joined #nixos
infinisil-m has joined #nixos
MayeulC has joined #nixos
neonfuz__ has joined #nixos
makaveli[m] has joined #nixos
jpo-joyent has joined #nixos
ninjatrappeur[m] has joined #nixos
ponpinu[m] has joined #nixos
pleeplop has joined #nixos
musicmatze has joined #nixos
icetan has joined #nixos
nbardiuk has joined #nixos
otini has joined #nixos
macerbi[m] has joined #nixos
lurpahi has joined #nixos
hylshols7qui[m] has joined #nixos
haslersn[m] has joined #nixos
balsoft[m] has joined #nixos
badmutex[m] has joined #nixos
jyvrmn2[m] has joined #nixos
fearlessKim[m] has joined #nixos
dmitry-zen[m] has joined #nixos
malteof[m] has joined #nixos
offlinehacker has joined #nixos
Thinkofname[m] has joined #nixos
metasyntactic[m] has joined #nixos
asthma[m] has joined #nixos
corpix[m] has joined #nixos
luftmensch[m] has joined #nixos
Criena[m] has joined #nixos
timokau[m] has joined #nixos
yangm97 has joined #nixos
sphalerit has joined #nixos
Ralith has joined #nixos
roberth has joined #nixos
tokudan[m] has joined #nixos
rycee has joined #nixos
domenkozar[m] has joined #nixos
vaibhavsagar has joined #nixos
timclassic has joined #nixos
benkerry[m] has joined #nixos
contrun[m] has joined #nixos
siraben has joined #nixos
thequux[m] has joined #nixos
wak-work has joined #nixos
bee[m]1 has joined #nixos
Brio[m] has joined #nixos
hackeryarn[m] has joined #nixos
Seb[m]1 has joined #nixos
ststefa[m] has joined #nixos
slabity has joined #nixos
AlexRice[m] has joined #nixos
aaronduino[m] has joined #nixos
Flip[m]1 has joined #nixos
worldofpeace has joined #nixos
spacekitteh[m] has joined #nixos
rdes[m] has joined #nixos
AntonSchirg[m] has joined #nixos
thaddeusmaddeus[ has joined #nixos
thefloweringash has joined #nixos
billsun has joined #nixos
therealwaphire[m has joined #nixos
snupples[m] has joined #nixos
atgo[m] has joined #nixos
grahamc[m] has joined #nixos
Purple-mx has joined #nixos
Dan[m]3 has joined #nixos
peter2121[m] has joined #nixos
sitischu[m] has joined #nixos
tfc[m] has joined #nixos
sm[m] has joined #nixos
submoo[m] has joined #nixos
Rich[m] has joined #nixos
sylvie[m] has joined #nixos
sierraDelta has joined #nixos
Josh[m] has joined #nixos
YanMinari[c][m] has joined #nixos
zaphar_ps[m] has joined #nixos
kevincox[m] has joined #nixos
henrytill[m] has joined #nixos
bobmolson[m] has joined #nixos
nokomprendo[m] has joined #nixos
juliendehos[m] has joined #nixos
gudea[m] has joined #nixos
iraems[m] has joined #nixos
JaredM[m] has joined #nixos
marko[m]1 has joined #nixos
jonge[m] has joined #nixos
bricewge has joined #nixos
linarcx[m] has joined #nixos
gallexme[m] has joined #nixos
jonreeve[m] has joined #nixos
jschievink[m] has joined #nixos
sputny[m] has joined #nixos
tuxubuntu[m] has joined #nixos
rnhmjoj has joined #nixos
Vskilet has joined #nixos
smolboye[m] has joined #nixos
uvnikita[m] has joined #nixos
sjy[m] has joined #nixos
torched[m] has joined #nixos
weebull[m] has joined #nixos
tbenst[m] has joined #nixos
wolfman12345[m] has joined #nixos
theseriousadult[ has joined #nixos
travelion[m] has joined #nixos
teh[m] has joined #nixos
xenofungus[m] has joined #nixos
sneknek[m] has joined #nixos
utdemir[m] has joined #nixos
stammon has joined #nixos
Tony[m]4 has joined #nixos
calbrecht[mb] has quit [Remote host closed the connection]
a777826537 has joined #nixos
calbrecht[mb] has joined #nixos
jackdk has quit [Ping timeout: 246 seconds]
jackdk_ has joined #nixos
<mabel> there are.... a lot of people from Matrix here. hi!
<mabel> question: I have fetchurl as a build input, since it's a dependency that needs to be fetched..
<eyJhb> Did ... Did matrix just get bridged right now?
<mabel> I think so
<etu> Nah, it's been before
periklis has joined #nixos
<eyJhb> etu: but just a reconnect?
mekeor has quit [Ping timeout: 258 seconds]
<etu> eyJhb: yeah
<etu> Earlier there was a lot of people on matrix loosing the connection
cfricke has joined #nixos
<eyJhb> I never got the fuzz about Matrix...
buckley310 has quit [Quit: Connection closed for inactivity]
<lewo> mabel: there is a builtin.fetchurl that comes with Nix.
<etu> eyJhb: I like the ideas and such, and tried to use it for irc for a while. But the hosted bridge was too slow and crappy for my taste. It lost messages in both directions (due to load I think).
<mabel> lewo: definitely. unfortunately, stdenv/setup takes it upon itself to source the downloaded artifact in question
<mabel> which happens to be a .xz
<mabel> what I'd really like is for the xz to be expanded
<mabel> I know this happens automagically for 'src', but I need it to happen for these build inputs
<eyJhb> etu: never tried it, but I just like my IRC client too much, and the clients they have.. Dear lord, do not force me to use that ****.. But, now that you mention the bridge being .... as well, then, no dice
<eyJhb> Some guy at uni is trying to get me to use it as well, but I really do not care that much. I am mostly on Freenode anyways, and... That is public, unprotected, open, anyways
<mabel> or, alternatively, for the xz to be ignored
<mabel> sourcing it is never going to work
<eyJhb> And my only private conversations are on my local bitlbee bridge... to facebook.. Sooohh :D
<mabel> I'm a little overwhelmed by the sheer complexity of the package I decided to start with... but it's definitely a learning project
<rnhmjoj> do you know why graphical.targets dependes on network-online.target? when i'm offline i can't login at all, until dhcpcd times out
goibhniu1 has joined #nixos
<eyJhb> hyper_ch2: It is PR #58970
<{^_^}> https://github.com/NixOS/nixpkgs/pull/58970 (by eyJhb, 15 hours ago, open): curseradio: init at 0.2
mabel has quit [Ping timeout: 246 seconds]
<eyJhb> Everything should be good to go now ;) - I will just start always making patches with actual path files...
linarcx has joined #nixos
fusion809 has joined #nixos
lielazivee has joined #nixos
a777826537 has quit [Ping timeout: 240 seconds]
Thra11 has quit [Ping timeout: 250 seconds]
iyzsong has joined #nixos
johanot has joined #nixos
lopsided98 has quit [Ping timeout: 250 seconds]
lopsided98_ has joined #nixos
kvda has joined #nixos
<{^_^}> [nixpkgs] @bkchr opened pull request #58996 → vscode-extensions.vscodevim.vim: 1.2.0 -> 1.3.0 → https://git.io/fjL8j
jackdk_ has quit [Ping timeout: 245 seconds]
<arianvp> Hey, i'm really getting the hang of the callPackage design pattern, but I wonder how it works with nested packages?
<arianvp> do I have to use haskellPackages.callPackage instead ?
<{^_^}> [nixpkgs] @dotlambda merged pull request #58680 → [18.09] postfix: 3.3.3 -> 3.3.4 → https://git.io/fjkbM
<arianvp> basically, if I want to depend on a binary from haskellPackages in my derivaiton, I don't want to write {stdenv, haskellPackages}: but {stdenv, name-of-binary}: for easy mocking
<{^_^}> [nixpkgs] @dotlambda pushed to release-18.09 « postfix: 3.3.3 -> 3.3.4 (#58680) »: https://git.io/fjL4v
lovesegfault has quit [Quit: WeeChat 2.4]
grizwako has quit [Ping timeout: 245 seconds]
<linarcx> Gyus. I've create a test profile via: `nixos-rebuild switch -p test `, and it added a submenu to grub. But i want to delete it. How can i do it?
fendor has joined #nixos
<arianvp> linarcx:
<arianvp> do a nix-garbage-collect and then nixos-rebuild boot
<arianvp> it should remove the boot entries that are garbage collected
<arianvp> maybe you need to manually delete the profile first though... not sure
<arianvp> as profiles are explicit garbage collection roots
<linarcx> arianvp: How to manually delete the profile?
thc202 has joined #nixos
<arianvp> linarcx: rm /var/nix/nix/profiles/system-profiles/<name>
<linarcx> arianvp: Let my try it.
<arianvp> I figured that out by looking at `man nixos-rebuild` by the way. it tells where the profile is created
<arianvp> in case you want to look it up later again
mabel has joined #nixos
<{^_^}> [nixpkgs] @ctheune opened pull request #58997 → gettext: apply patch for CVE 2018-18751 → https://git.io/fjL4s
lielazivee has quit [Ping timeout: 250 seconds]
EoF has joined #nixos
grizwako has joined #nixos
grizwako_ has joined #nixos
grizwako has quit [Ping timeout: 246 seconds]
sam has joined #nixos
sam is now known as Guest76302
sigmundv has joined #nixos
rauno has joined #nixos
lielazivee has joined #nixos
pie__ has joined #nixos
arjen-jonathan has joined #nixos
cfricke has quit [Quit: WeeChat 2.4]
linarcx has quit [Quit: WeeChat 2.4]
linarcx has joined #nixos
linarcx has quit [Client Quit]
jtojnar has joined #nixos
sigmundv has quit [Ping timeout: 245 seconds]
<arianvp> linarcx[m]: did that work?
linarcx has joined #nixos
<{^_^}> [nixpkgs] @ctheune opened pull request #58999 → Gettext security update 18.09 → https://git.io/fjL4M
<{^_^}> [nixpkgs] @ctheune closed pull request #58999 → Gettext security update 18.09 → https://git.io/fjL4M
leat has joined #nixos
sigmundv has joined #nixos
<lielazivee> Hey, I'm trying to create a derivation of NodeJS built from source and I'm running into an error while building - "./configure: /usr/bin/env: bad interpreter: No such file or directory". Any pointers as to what I could be doing wrong?
liori has joined #nixos
sb0 has joined #nixos
<{^_^}> [nixpkgs] @ctheune opened pull request #59000 → gettext: apply patch for CVE 2018-18751 → https://git.io/fjL45
<srhb> lielazivee: You probably need to patch some shebangs (look up patchShebangs)
<eyJhb> srhb: did your mail server work?
<linarcx> arianvp: Thank you so much.
<srhb> eyJhb: Yes, thanks :)
regulus_ has quit [Ping timeout: 255 seconds]
<eyJhb> srhb: and you're still alive, I am quite impressed :D ;)
<srhb> Me too!
wfranzini has quit [Read error: Connection reset by peer]
ChengCat has joined #nixos
lielazivee has quit [Ping timeout: 255 seconds]
wfranzini has joined #nixos
<{^_^}> [nixpkgs] @dotlambda merged pull request #58842 → python37Packages.shouldbe: 0.1.0 -> 0.1.2 → https://git.io/fjI0d
<{^_^}> [nixpkgs] @dotlambda pushed 3 commits to master: https://git.io/fjLBJ
ChengCat has quit [Client Quit]
<{^_^}> [nixpkgs] @andir closed pull request #58997 → gettext: apply patch for CVE 2018-18751 → https://git.io/fjL4s
<{^_^}> [nixpkgs] @andir reopened pull request #58997 → gettext: apply patch for CVE 2018-18751 → https://git.io/fjL4s
<eyJhb> srhb: if you are bored, I got loads of Go code you can document, now that you are finished with the mail server ;)
true_bunta has quit [Remote host closed the connection]
<johanot> If srhb is bored, she can help me with configuring znc :P
<eyJhb> johanot: Why do I get the feeling it is short for "Johan Ottosen"? - ZNC is hell to setup to begin with, but after that, just don't touch it. I have a docker-compose file, with everything I need to have SSL, etc on mine :D
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/2bf0116d346 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @dotlambda merged pull request #58841 → python37Packages.sasmodels: 0.98 -> 0.99 → https://git.io/fjI01
<{^_^}> [nixpkgs] @dotlambda pushed commit from @r-ryantm to master « python37Packages.sasmodels: 0.98 -> 0.99 (#58841) »: https://git.io/fjLBq
<manveru> hmm, does anyone have audio/video with pidgin working?
dhkl has quit [Ping timeout: 244 seconds]
<manveru> seems like https://github.com/NixOS/nixpkgs/issues/32015 is still open, and still happening to me
<{^_^}> #32015 (by d4g, 1 year ago, open): pidgin: Audio/Voice does not work
<{^_^}> [nixpkgs] @dotlambda merged pull request #57431 → python37Packages.progress: 1.4 -> 1.5 → https://git.io/fhjlh
<{^_^}> [nixpkgs] @dotlambda pushed 3 commits to master: https://git.io/fjLBO
tboston_ has joined #nixos
<jtojnar> worldofpeace: I am going to merge GNOME 3.32 to staging now
<manveru> seems like GST_PLUGIN_PATH isn't set... which is in the pidgin wrapProgram, but not once you use it with plugins
wpcarro has joined #nixos
lielazivee has joined #nixos
kai_w has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @jtojnar merged pull request #56805 → cracklib: 2.9.6 -> 2.9.7, generate dictionary from wordlists → https://git.io/fhx30
<{^_^}> [nixpkgs] @jtojnar pushed 4 commits to staging: https://git.io/fjLBs
tboston_ has quit [Ping timeout: 255 seconds]
tboston_ has joined #nixos
<{^_^}> [nixpkgs] @dotlambda merged pull request #58690 → flexget: 2.17.20 -> 2.20.17 → https://git.io/fjkAj
<{^_^}> [nixpkgs] @dotlambda pushed 5 commits to master: https://git.io/fjLBZ
<{^_^}> [nixpkgs] @Taneb opened pull request #59001 → gramps: fix build → https://git.io/fjLBW
Theuni2 has joined #nixos
Theuni2 has joined #nixos
<{^_^}> [nixpkgs] @timokau opened pull request #59002 → vimPlugins: update → https://git.io/fjLBu
<{^_^}> [nixpkgs] @jtojnar pushed 717 commits to staging: https://git.io/fjLBz
<lielazivee> srhb: patchShebangs indeed fixed the problem. Thanks!
sigmundv has quit [Ping timeout: 246 seconds]
zupo has joined #nixos
tboston__ has joined #nixos
tboston_ has quit [Ping timeout: 250 seconds]
<{^_^}> Channel nixpkgs-18.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/222950952f1 (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-18.09-darwin)
sigmundv has joined #nixos
Anton-Latukha has joined #nixos
wfranzini has quit [Read error: Connection reset by peer]
wfranzini has joined #nixos
i1nfusion has quit [Remote host closed the connection]
alex`` has joined #nixos
tboston_ has joined #nixos
marko[m]1 has quit [Remote host closed the connection]
nokomprendo[m] has quit [Remote host closed the connection]
sitischu[m] has quit [Remote host closed the connection]
torched[m] has quit [Remote host closed the connection]
balsoft[m] has quit [Remote host closed the connection]
ststefa[m] has quit [Write error: Connection reset by peer]
timokau[m] has quit [Read error: Connection reset by peer]
sjy[m] has quit [Read error: Connection reset by peer]
icetan has quit [Remote host closed the connection]
thequux[m] has quit [Read error: Connection reset by peer]
iraems[m] has quit [Remote host closed the connection]
wolfman12345[m] has quit [Remote host closed the connection]
bobmolson[m] has quit [Remote host closed the connection]
Moredread[m] has quit [Read error: Connection reset by peer]
badmutex[m] has quit [Read error: Connection reset by peer]
Josh[m] has quit [Remote host closed the connection]
sierraDelta has quit [Remote host closed the connection]
sm[m] has quit [Read error: Connection reset by peer]
attero[m] has quit [Remote host closed the connection]
florianjacob has quit [Remote host closed the connection]
siraben has quit [Remote host closed the connection]
Ralith has quit [Remote host closed the connection]
xenofungus[m] has quit [Read error: Connection reset by peer]
utdemir[m] has quit [Read error: Connection reset by peer]
travelion[m] has quit [Remote host closed the connection]
BinkyTheClown has quit [Read error: Connection reset by peer]
melchips[m] has quit [Remote host closed the connection]
craige[m] has quit [Read error: Connection reset by peer]
bb010g has quit [Read error: Connection reset by peer]
bpye has quit [Remote host closed the connection]
nbardiuk has quit [Remote host closed the connection]
am3on[m] has quit [Remote host closed the connection]
mara[m] has quit [Write error: Connection reset by peer]
peter2121[m] has quit [Read error: Connection reset by peer]
smolboye[m] has quit [Read error: Connection reset by peer]
nh2[m] has quit [Read error: Connection reset by peer]
rycee has quit [Read error: Connection reset by peer]
jak[m] has quit [Remote host closed the connection]
alienpirate5 has quit [Read error: Connection reset by peer]
submoo[m] has quit [Read error: Connection reset by peer]
corpix[m] has quit [Read error: Connection reset by peer]
AntonSchirg[m] has quit [Read error: Connection reset by peer]
Dan[m]3 has quit [Read error: Connection reset by peer]
theseriousadult[ has quit [Remote host closed the connection]
therealwaphire[m has quit [Read error: Connection reset by peer]
laas has quit [Read error: Connection reset by peer]
benkerry[m] has quit [Read error: Connection reset by peer]
thaddeusmaddeus[ has quit [Read error: Connection reset by peer]
wak-work has quit [Read error: Connection reset by peer]
asthma[m] has quit [Read error: Connection reset by peer]
Seb[m]1 has quit [Remote host closed the connection]
bbigras has quit [Read error: Connection reset by peer]
olejorgenb[m] has quit [Remote host closed the connection]
infinisil-m has quit [Read error: Connection reset by peer]
leons has quit [Read error: Connection reset by peer]
moope[m] has quit [Read error: Connection reset by peer]
sylvie[m] has quit [Read error: Connection reset by peer]
JaredM[m] has quit [Remote host closed the connection]
hackeryarn[m] has quit [Remote host closed the connection]
Brio[m] has quit [Remote host closed the connection]
escaP[m] has quit [Remote host closed the connection]
alj[m] has quit [Remote host closed the connection]
M0ddba11[m] has quit [Remote host closed the connection]
billsun has quit [Remote host closed the connection]
nyanloutre[m] has quit [Remote host closed the connection]
dkellner[m] has quit [Remote host closed the connection]
aissat[m] has quit [Read error: Connection reset by peer]
WilliamHamilton[ has quit [Read error: Connection reset by peer]
uvnikita[m] has quit [Remote host closed the connection]
das-g[m] has quit [Remote host closed the connection]
sphalerit has quit [Read error: Connection reset by peer]
hiroshi[m] has quit [Remote host closed the connection]
MiloIgnis[m] has quit [Read error: Connection reset by peer]
jmchapman[m] has quit [Read error: Connection reset by peer]
Ericson2314 has quit [Read error: Connection reset by peer]
Tony[m]4 has quit [Read error: Connection reset by peer]
bachp has quit [Read error: Connection reset by peer]
contrun[m] has quit [Read error: Connection reset by peer]
teh[m] has quit [Read error: Connection reset by peer]
copy` has quit [Read error: Connection reset by peer]
spacekitteh[m] has quit [Read error: Connection reset by peer]
AlexRice[m] has quit [Remote host closed the connection]
Criena[m] has quit [Remote host closed the connection]
nocent has quit [Remote host closed the connection]
jonge[m] has quit [Remote host closed the connection]
gallexme[m] has quit [Remote host closed the connection]
kevincox[m] has quit [Remote host closed the connection]
bkchr has quit [Remote host closed the connection]
roberth has quit [Remote host closed the connection]
benwaffle[m] has quit [Remote host closed the connection]
tokudan[m] has quit [Remote host closed the connection]
dtz has quit [Read error: Connection reset by peer]
linarcx[m] has quit [Read error: Connection reset by peer]
cejota[m] has quit [Remote host closed the connection]
sputny[m] has quit [Read error: Connection reset by peer]
fearlessKim[m] has quit [Write error: Connection reset by peer]
ptotter[m] has quit [Remote host closed the connection]
stammon has quit [Remote host closed the connection]
atgo[m] has quit [Read error: Connection reset by peer]
clacke[m] has quit [Remote host closed the connection]
Vskilet has quit [Remote host closed the connection]
isgy[m] has quit [Remote host closed the connection]
kaychaks[m] has quit [Remote host closed the connection]
Noughtmare[m] has quit [Remote host closed the connection]
worldofpeace has quit [Remote host closed the connection]
exarkun has quit [Remote host closed the connection]
matthewbauer has quit [Remote host closed the connection]
jyvrmn2[m] has quit [Read error: Connection reset by peer]
metasyntactic[m] has quit [Read error: Connection reset by peer]
tfc[m] has quit [Read error: Connection reset by peer]
simbergm has quit [Read error: Connection reset by peer]
rnhmjoj has quit [Remote host closed the connection]
attente[m] has quit [Remote host closed the connection]
vaibhavsagar has quit [Read error: Connection reset by peer]
timclassic has quit [Read error: Connection reset by peer]
hylshols7qui[m] has quit [Read error: Connection reset by peer]
thefloweringash has quit [Read error: Connection reset by peer]
philipp[m] has quit [Read error: Connection reset by peer]
Dandellion[m] has quit [Read error: Connection reset by peer]
slabity has quit [Read error: Connection reset by peer]
ponpinu[m] has quit [Read error: Connection reset by peer]
grahamc[m] has quit [Read error: Connection reset by peer]
tboston__ has quit [Ping timeout: 250 seconds]
rdes[m] has quit [Read error: Connection reset by peer]
Purple-mx has quit [Read error: Connection reset by peer]
jpo-joyent has quit [Remote host closed the connection]
cyberwolf[m][m] has quit [Remote host closed the connection]
MerlinGttlinger[ has quit [Remote host closed the connection]
otini has quit [Remote host closed the connection]
tuxubuntu[m] has quit [Remote host closed the connection]
gudea[m] has quit [Remote host closed the connection]
jschievink[m] has quit [Remote host closed the connection]
MayeulC has quit [Remote host closed the connection]
Rich[m] has quit [Read error: Connection reset by peer]
zurdo has quit [Remote host closed the connection]
domenkozar[m] has quit [Remote host closed the connection]
juliendehos[m] has quit [Remote host closed the connection]
bricewge has quit [Remote host closed the connection]
lurpahi has quit [Remote host closed the connection]
snupples[m] has quit [Remote host closed the connection]
ejpcmac has quit [Remote host closed the connection]
macerbi[m] has quit [Remote host closed the connection]
bobvanderlinden_ has quit [Read error: Connection reset by peer]
aaronduino[m] has quit [Remote host closed the connection]
weebull[m] has quit [Remote host closed the connection]
d_g[m] has quit [Remote host closed the connection]
YanMinari[c][m] has quit [Remote host closed the connection]
aquarial has quit [Read error: Connection reset by peer]
jonreeve[m] has quit [Read error: Connection reset by peer]
henrytill[m] has quit [Read error: Connection reset by peer]
fgaz has quit [Read error: Connection reset by peer]
momack2[m] has quit [Remote host closed the connection]
Flip[m]1 has quit [Read error: Connection reset by peer]
neonfuz__ has quit [Remote host closed the connection]
malteof[m] has quit [Write error: Connection reset by peer]
pleeplop has quit [Write error: Connection reset by peer]
klDen[m] has quit [Remote host closed the connection]
luftmensch[m] has quit [Write error: Broken pipe]
IslandUsurper has quit [Remote host closed the connection]
bennofs[m] has quit [Write error: Connection reset by peer]
bkl[m] has quit [Write error: Connection reset by peer]
ninjatrappeur[m] has quit [Write error: Connection reset by peer]
tbenst[m] has quit [Read error: Connection reset by peer]
offlinehacker has quit [Write error: Connection reset by peer]
makaveli[m] has quit [Write error: Connection reset by peer]
bee[m]1 has quit [Write error: Connection reset by peer]
lycium[m] has quit [Write error: Connection reset by peer]
yangm97 has quit [Write error: Connection reset by peer]
Thinkofname[m] has quit [Remote host closed the connection]
musicmatze has quit [Write error: Connection reset by peer]
haslersn[m] has quit [Write error: Connection reset by peer]
dmitry-zen[m] has quit [Write error: Connection reset by peer]
sneknek[m] has quit [Read error: Connection reset by peer]
capslock3[m] has quit [Remote host closed the connection]
zaphar_ps[m] has quit [Read error: Connection reset by peer]
cornu has quit [Write error: Connection reset by peer]
codyopel has quit [Remote host closed the connection]
abbafei[m] has quit [Read error: Connection reset by peer]
Barnabas[m] has quit [Read error: Connection reset by peer]
irdr has quit [Max SendQ exceeded]
vsss has quit [Ping timeout: 250 seconds]
irdr has joined #nixos
dhkl has joined #nixos
vsss has joined #nixos
vsss has quit [Max SendQ exceeded]
infinee has joined #nixos
vsss has joined #nixos
vsss has quit [Max SendQ exceeded]
erictapen has joined #nixos
tboston_ has quit [Ping timeout: 246 seconds]
vsss has joined #nixos
<{^_^}> [nixpkgs] @timokau merged pull request #59002 → vimPlugins: update → https://git.io/fjLBu
<{^_^}> [nixpkgs] @timokau pushed to master « vimPlugins: update (#59002) »: https://git.io/fjLB5
vsss has quit [Excess Flood]
knupfer has joined #nixos
vsss has joined #nixos
__monty__ has joined #nixos
dhkl has quit [Ping timeout: 250 seconds]
florianjacob has joined #nixos
<{^_^}> Channel nixos-18.09-small advanced to https://github.com/NixOS/nixpkgs/commit/222950952f1 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-18.09-small)
kenshinCH has joined #nixos
regulus_ has joined #nixos
knupfer has quit [Quit: knupfer]
<kenshinCH> Python question. I have a project that has two packages, one which needs `docker` and one which needs `docker-py`. The two packages are incompatible. My colleagues solve this simply by didinstalling one of the two via pip. How can I obtain something similar with a default.nix? What I have now is the (standard?) https://gist.github.com/mredaelli/84aefc0c69e4bceb6e73de76f2137d0c
gal_bolle has joined #nixos
vmandela has quit [Quit: Leaving]
regulus_ has quit [Ping timeout: 264 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @manveru opened pull request #59003 → pidgin: fix gst plugin path for audio/video → https://git.io/fjLRe
<{^_^}> [nixpkgs] @Mic92 opened pull request #59004 → radare2: 3.3.0 -> 3.4.1 → https://git.io/fjLRf
<manveru> that was an easy fix :)
<{^_^}> [nixpkgs] @jtojnar pushed 172 commits to gnome-3.32: https://git.io/fjLRJ
JosW has joined #nixos
regulus_ has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « androidStudioPackages.{dev,canary}: 3.5.0.8 -> 3.5.0.9 »: https://git.io/fjLRY
JosW has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
JosW has joined #nixos
linarcx has quit [Quit: WeeChat 2.4]
lielazivee has quit [Remote host closed the connection]
<{^_^}> manveru/bundix#51 (by manveru, 21 seconds ago, open): remove the --leave-dotGit to restore reproducability
linarcx has joined #nixos
ubert has joined #nixos
cfricke has joined #nixos
kjuvi[m] has joined #nixos
rauno has quit [Remote host closed the connection]
gal_bolle has quit [Ping timeout: 268 seconds]
cornu has joined #nixos
dtz has joined #nixos
fgaz has joined #nixos
bennofs[m] has joined #nixos
clacke[m] has joined #nixos
bachp has joined #nixos
Ericson2314 has joined #nixos
Dandellion[m] has joined #nixos
bpye has joined #nixos
BinkyTheClown has joined #nixos
WilliamHamilton[ has joined #nixos
attero[m] has joined #nixos
zurdo has joined #nixos
benwaffle[m] has joined #nixos
bobvanderlinden_ has joined #nixos
copy` has joined #nixos
bkl[m] has joined #nixos
bb010g has joined #nixos
attente[m] has joined #nixos
Noughtmare[m] has joined #nixos
abbafei[m] has joined #nixos
aquarial has joined #nixos
bbigras has joined #nixos
Barnabas[m] has joined #nixos
mara[m] has joined #nixos
alj[m] has joined #nixos
cejota[m] has joined #nixos
alienpirate5 has joined #nixos
dkellner[m] has joined #nixos
am3on[m] has joined #nixos
laas has joined #nixos
M0ddba11[m] has joined #nixos
bkchr has joined #nixos
aissat[m] has joined #nixos
das-g[m] has joined #nixos
capslock3[m] has joined #nixos
MiloIgnis[m] has joined #nixos
craige[m] has joined #nixos
escaP[m] has joined #nixos
cyberwolf[m][m] has joined #nixos
atgo[m] has joined #nixos
ejpcmac has joined #nixos
philipp[m] has joined #nixos
kaychaks[m] has joined #nixos
olejorgenb[m] has joined #nixos
ptotter[m] has joined #nixos
simbergm has joined #nixos
leons has joined #nixos
exarkun has joined #nixos
nyanloutre[m] has joined #nixos
Moredread[m] has joined #nixos
melchips[m] has joined #nixos
MerlinGttlinger[ has joined #nixos
momack2[m] has joined #nixos
lycium[m] has joined #nixos
IslandUsurper has joined #nixos
nh2[m] has joined #nixos
jak[m] has joined #nixos
moope[m] has joined #nixos
klDen[m] has joined #nixos
jmchapman[m] has joined #nixos
hiroshi[m] has joined #nixos
codyopel has joined #nixos
isgy[m] has joined #nixos
matthewbauer has joined #nixos
infinisil-m has joined #nixos
nocent has joined #nixos
jpo-joyent has joined #nixos
MayeulC has joined #nixos
ponpinu[m] has joined #nixos
neonfuz__ has joined #nixos
musicmatze has joined #nixos
otini has joined #nixos
d_g[m] has joined #nixos
dmitry-zen[m] has joined #nixos
nbardiuk has joined #nixos
icetan has joined #nixos
jyvrmn2[m] has joined #nixos
pleeplop has joined #nixos
badmutex[m] has joined #nixos
haslersn[m] has joined #nixos
macerbi[m] has joined #nixos
offlinehacker has joined #nixos
malteof[m] has joined #nixos
lurpahi has joined #nixos
hylshols7qui[m] has joined #nixos
benkerry[m] has joined #nixos
fearlessKim[m] has joined #nixos
corpix[m] has joined #nixos
asthma[m] has joined #nixos
balsoft[m] has joined #nixos
Thinkofname[m] has joined #nixos
timclassic has joined #nixos
tokudan[m] has joined #nixos
sphalerit has joined #nixos
luftmensch[m] has joined #nixos
jschievink[m] has joined #nixos
metasyntactic[m] has joined #nixos
Flip[m]1 has joined #nixos
aaronduino[m] has joined #nixos
roberth has joined #nixos
domenkozar[m] has joined #nixos
siraben has joined #nixos
rycee has joined #nixos
yangm97 has joined #nixos
Ralith has joined #nixos
Seb[m]1 has joined #nixos
ststefa[m] has joined #nixos
Criena[m] has joined #nixos
timokau[m] has joined #nixos
vaibhavsagar has joined #nixos
contrun[m] has joined #nixos
thequux[m] has joined #nixos
spacekitteh[m] has joined #nixos
hackeryarn[m] has joined #nixos
bee[m]1 has joined #nixos
wak-work has joined #nixos
Purple-mx has joined #nixos
slabity has joined #nixos
AlexRice[m] has joined #nixos
Brio[m] has joined #nixos
grahamc[m] has joined #nixos
thaddeusmaddeus[ has joined #nixos
AntonSchirg[m] has joined #nixos
worldofpeace has joined #nixos
rdes[m] has joined #nixos
thefloweringash has joined #nixos
therealwaphire[m has joined #nixos
billsun has joined #nixos
tfc[m] has joined #nixos
snupples[m] has joined #nixos
sitischu[m] has joined #nixos
sm[m] has joined #nixos
Rich[m] has joined #nixos
Tony[m]3 has joined #nixos
submoo[m] has joined #nixos
Dan[m]3 has joined #nixos
sylvie[m] has joined #nixos
YanMinari[c][m] has joined #nixos
sierraDelta has joined #nixos
peter2121[m] has joined #nixos
Josh[m] has joined #nixos
bobmolson[m] has joined #nixos
ninjatrappeur[m] has joined #nixos
zaphar_ps[m] has joined #nixos
kevincox[m] has joined #nixos
henrytill[m] has joined #nixos
makaveli[m]1 has joined #nixos
JaredM[m] has joined #nixos
nokomprendo[m] has joined #nixos
iraems[m] has joined #nixos
linarcx[m] has joined #nixos
juliendehos[m] has joined #nixos
gudea[m] has joined #nixos
bricewge has joined #nixos
gallexme[m] has joined #nixos
marko[m]1 has joined #nixos
jonge[m] has joined #nixos
jonreeve[m] has joined #nixos
Vskilet has joined #nixos
rnhmjoj has joined #nixos
sputny[m] has joined #nixos
weebull[m] has joined #nixos
sjy[m] has joined #nixos
smolboye[m] has joined #nixos
theseriousadult[ has joined #nixos
tuxubuntu[m] has joined #nixos
uvnikita[m] has joined #nixos
tbenst[m] has joined #nixos
wolfman12345[m] has joined #nixos
sneknek[m] has joined #nixos
xenofungus[m] has joined #nixos
torched[m] has joined #nixos
travelion[m] has joined #nixos
teh[m] has joined #nixos
stammon has joined #nixos
utdemir[m] has joined #nixos
calbrecht[mb] has quit [Remote host closed the connection]
arch_ has joined #nixos
arch_ has quit [Remote host closed the connection]
calbrecht[mb] has joined #nixos
arch_ has joined #nixos
arch_ has quit [Remote host closed the connection]
Makaveli7 has joined #nixos
Makaveli7 has quit [Remote host closed the connection]
Guest76302 has quit [Remote host closed the connection]
Makaveli7 has joined #nixos
init_6 has joined #nixos
mabel has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @terlar opened pull request #59006 → WIP linuxPackages.sysdig: 0.24.2 -> 0.25 → https://git.io/fjLR1
kvda has quit [Ping timeout: 244 seconds]
<jluttine> are there any stats about how much nix(os) is used and is it growing in popularity?
drewr has quit [Quit: ERC (IRC client for Emacs 26.1)]
<__monty__> Nr. 89 or distrowatch.
cmacrae has joined #nixos
<__monty__> That's the only real measure of distro popularity I know.
<cmacrae> Hey guys o/ I use the unstable channel as my main channel on my laptop. How can I use a stable/different channel for a NixOps deployment? As in, for the target machine (virtualbox in this instance); I want that to use a stable channel
<jluttine> Maybe nixos.org visit stats? Or NixOS installer image download stats? Those are difficult to compare to other distros but at least they might show if popularity is growing, decreasing or staying flat
<__monty__> NixOS is still at the beginning of the hype cycle afaict. It's not ready for primetime yet imo.
fendor has quit [Ping timeout: 245 seconds]
<srk> cmacrae: nixops modify -I nixpkgs=... network.nix
<srk> manveru: o/
<cmacrae> Thanks guys! Much appreciated. I'll take a look <3
Makaveli7 has quit [Quit: Makaveli7]
mabel has joined #nixos
mconstant has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
monotux has quit [Quit: The Lounge - https://thelounge.chat]
monotux has joined #nixos
<{^_^}> [nixpkgs] @hedning merged pull request #57027 → Gnome 3.32 → https://git.io/fhpDb
<{^_^}> [nixpkgs] @hedning pushed 173 commits to staging: https://git.io/fjLRF
<monotux> how is the 19.03 release going btw?
<manveru> jluttine: afaicr we don't really collect any stats... you could look at github stats for nixpkgs, or the number of users on discourse or irc, but don't think we have a history for that either
gal_bolle has joined #nixos
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/d956f2279b8 (from 35 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
<manveru> my subjective feeling is that it's growing a bit faster every year so far, being use more in companies too
<{^_^}> [nixpkgs] @WilliButz opened pull request #59008 → grafana: 6.1.0 -> 6.1.1 → https://git.io/fjLRj
waleee has joined #nixos
<manveru> jluttine: ah, there's also http://redditmetrics.com/r/NixOS
<{^_^}> [nixpkgs] @aristaeus opened pull request #59009 → ibus: 1.5.17 -> 1.5.20 → https://git.io/fjL0e
<manveru> ericsagnes: hey man, just saw you do the tokyo nix meetups
rauno has joined #nixos
Makaveli7 has joined #nixos
drewr has joined #nixos
<{^_^}> [nixpkgs] @loewenheim opened pull request #59010 → vdirsyncerStable: Init at 0.16.7 → https://git.io/fjL0I
<{^_^}> [nixpkgs] @mmlb opened pull request #59011 → netperf: 20180504 -> 20190613 → https://git.io/fjL0L
<thefloweringash> There are Tokyo nix meetups?
<lassulus> the last one was in june
<manveru> ah, didn't check the year :(
JosW has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
<manveru> anw, would be cool to meet some nixos folk while i'm there :)
<{^_^}> [nixpkgs] @grahamc merged pull request #58029 → godot: 3.0.6 -> 3.1 → https://git.io/fjfM5
<{^_^}> [nixpkgs] @grahamc pushed 2 commits to master: https://git.io/fjL0m
jasongrossman has quit [Ping timeout: 250 seconds]
hyper_ch2 has quit [Ping timeout: 256 seconds]
sb0 has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @gebner pushed 6 commits to master: https://git.io/fjL0O
<{^_^}> [nixpkgs] @gebner merged pull request #58957 → cura: 3.6.0 -> 4.0.0 → https://git.io/fjLvq
fendor has joined #nixos
chaker has joined #nixos
jasongrossman has joined #nixos
Wizek has quit [Ping timeout: 258 seconds]
silver has joined #nixos
johanot has quit [Quit: WeeChat 2.4]
dunk has quit [Ping timeout: 252 seconds]
Wizek has joined #nixos
dunk has joined #nixos
Wizek has quit [Max SendQ exceeded]
Wizek has joined #nixos
<monotux> was there a FAQ-section regarding the 19.03 release, or am I muted? :)
<gchristensen> neither
<monotux> heh, thanks
<gchristensen> it should be out soon, but unfortunately I don't have specifics beyond "soon"
linarcx has quit [Ping timeout: 250 seconds]
<infinisil> Soon™
<gchristensen> good gravy there are package overrides right in all-packages.nix
<monotux> ah, just curious
<gchristensen> for a good time, look for sqlite-replication in all-packages.nix
<monotux> I think I'll pass
linarcx has joined #nixos
a777826537 has joined #nixos
r0bby has quit [Ping timeout: 252 seconds]
orivej has quit [Ping timeout: 245 seconds]
Guest16957 has joined #nixos
dukedave has quit [Ping timeout: 258 seconds]
dukedave has joined #nixos
<{^_^}> [nixpkgs] @jtojnar closed pull request #57278 → libgweather: 3.28.2 -> 3.28.3 → https://git.io/fhhAR
rauno has quit [Remote host closed the connection]
kreisys has joined #nixos
hellrazor has joined #nixos
<nyanloutre[m]> hello, what issues needs to be addressed before 19.03 is considered stable ?
<gchristensen> I think the remaining tasks are administrative
<{^_^}> [nixpkgs] @jtojnar closed pull request #52389 → chrome-gnome-shell: 10 -> 10.1 → https://git.io/fpNXu
<therealwaphire[m> Is there a way to use Plasma from `unstable` ?
jasongrossman has quit [Remote host closed the connection]
cfricke has quit [Quit: WeeChat 2.4]
<{^_^}> [nixpkgs] @OmnipotentEntity opened pull request #59012 → Update Leela Zero to the recently released v0.17 → https://git.io/fjL0X
<{^_^}> [nixpkgs] @jtojnar closed pull request #55611 → gnome-documents: 3.30.0 -> 3.30.1 → https://git.io/fhQui
<OmnipotentEntity> I've fixed the title of that PR btw.
<gchristensen> which PR?
<OmnipotentEntity> The one two lines above mine: -{^_^}/#nixos- [nixpkgs] @OmnipotentEntity opened pull request #59012 → Update Leela Zero to the recently released v0.17 → https://git.io/fjL0X
<{^_^}> https://github.com/NixOS/nixpkgs/pull/59012 (by OmnipotentEntity, 3 minutes ago, open): leela-zero: 0.16 -> 0.17
<gchristensen> nice, a new maintainer!
reinhardt has quit [Quit: Leaving]
<Taneb> If I'm changing a derivation in nixpkgs, and previously it uses a custom patchPhase to substitute some variables, but I want to in addition fetch and apply a patch, is it acceptable to make the old patchPhase a prePatch?
<gchristensen> sure
<Taneb> Great, I'll make the PR fixing upstream then I'll make the PR for nixpkgs
nschoe has joined #nixos
<nschoe> Hi all:) Does anyone know if this 'Pick' software (https://www.omgubuntu.co.uk/2016/05/color-picker-tool-linux) is packages into nix, and if yes what's the name of it? I tried 'pick', but it seems to be something else.
<nschoe> Also I don't really know how to look for such a thing ^^
<symphorien> you can use nix-index/nix-locate
<symphorien> ,locate bin pick
<{^_^}> Found in packages: pick
<gchristensen> > pick.meta.description
<{^_^}> "Fuzzy text selection utility"
<symphorien> hum
<nschoe> symphorien, thanks, good to know. But yeah, 'pick' on nix is something else ^^
<{^_^}> [nixpkgs] @svanderburg merged pull request #58933 → eduke32: 20150420 -> 20190330 → https://git.io/fjIMH
<gchristensen> I don't think we have it packaged
<{^_^}> [nixpkgs] @svanderburg pushed 2 commits to master: https://git.io/fjL0d
<gchristensen> as looking for ColourPicker results in no code matches in nixpkgs
<nschoe> okay thanks
<nschoe> That's a issue :D
hellrazor has quit [Ping timeout: 240 seconds]
hellrazor has joined #nixos
<{^_^}> [nixpkgs] @petrkr closed pull request #56551 → Trezor luks → https://git.io/fhALh
ryantrinkle has joined #nixos
<Taneb> ...I should really check if things work in master before trying to fix them in 19.03
<ryantrinkle> is https://github.com/NixOS/nixpkgs/milestone/15 the best place to get status info about the 19.03 release?
<gchristensen> ryantrinkle: afaik, the remaining steps to a release are administrative -- and will be done soon :)
sam has joined #nixos
sam is now known as Guest83143
lassulus has quit [Ping timeout: 245 seconds]
Guest83143 has quit [Ping timeout: 246 seconds]
<ryantrinkle> gchristensen: cool :) i'll start some CI builds with it
npmccallum has quit [Ping timeout: 246 seconds]
<ryantrinkle> gchristensen: is there a good way to get notified when these releases are happening? a mailing list or something
Makaveli7_ has joined #nixos
Makaveli7 has quit [Ping timeout: 255 seconds]
Makaveli7_ is now known as Makaveli7
Kakky has joined #nixos
orivej has joined #nixos
<OmnipotentEntity> gchristensen, thanks for (and sorry for making you) manually start the borg bot, I just realized looking at other PRs that it happens automatically, I assume my broken title was the cause.
<{^_^}> [nixpkgs] @Taneb opened pull request #59013 → Backport souffle: 1.2.0 -> 1.5.1 → https://git.io/fjLEY
mconstant has joined #nixos
mojjo has joined #nixos
<gchristensen> omnipotententity: no worries, it only happens automatically if you contribute several times and become a known user to the bot itself
<mojjo> hi! How can I call a docker command (e.g. `docker info`) as a non-root user? works only as root if `virtualisation.docker.enable` is `true`
<gchristensen> omnipotententity: your commit message being structured correctly ("package-name: ...") would have triggered the bot automatically if you were a "known" :)
<gchristensen> ryantrinkle: signing up for the discourse would be a good spot, an announcement post will be made :)
<clever> $ id
<clever> uid=1000(clever) gid=100(users) groups=100(users),1(wheel),72(vboxusers),131(docker),500(wireshark)
<clever> mojjo: add yourself to the docker group
<mojjo> alright! just found the section in the manual, thx.
<clever> 84 users.extraUsers = {
<clever> 85 clever = {
<clever> 88 extraGroups = [ "wheel" "wireshark" "vboxusers" "docker" ];
<monotux> please please use a pastebin-like service next time
<clever> i did skip several lines to avoid spam, but yeah, i could have also reduced that to 1 line even
jasongrossman has joined #nixos
orivej has quit [Ping timeout: 250 seconds]
<monotux> I was afraid you'd paste even more ^_^
<mojjo> so I added the group to my user.. but the change does not atke affect after rebuilding... `docker` is not listed in `groups`
<clever> mojjo: you must also logout and login again for changes to groups to take effect
<mojjo> ok..
o1lo01ol_ has joined #nixos
mojjo has quit [Remote host closed the connection]
<monotux> oh he's using a local irc client then
<{^_^}> [nixpkgs] @timokau merged pull request #58961 → nauty: disable cpu feature detection → https://git.io/fjLTo
<{^_^}> [nixpkgs] @timokau pushed 4 commits to master: https://git.io/fjLE8
<DigitalKiwi> don't most people?
<etu> DigitalKiwi: No?
<etu> Or, I don't know. I thought most run a bouncer or a ncurses client in a shell somewhere
<OmnipotentEntity> I just use HexChat, because I don't care enough to set up something like that.
<genesis> me too :)
<OmnipotentEntity> IRC can wait for me to get home imo.
<OmnipotentEntity> Or I can use one of my linked nicks.
<DigitalKiwi> znc4lyfe but i don't think that most people use a bouncer
<manveru> irccloud represent :)
npmccallum has joined #nixos
Khetzal has quit [Quit: \o/]
<DigitalKiwi> this may be surprising but the majority of people don't like ncurses and cli apps and we are the weird ones that do ;p
<DigitalKiwi> shocking, i know
Khetzal has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/fb16ffd8a28 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
Makaveli7 has quit [Quit: Makaveli7]
iyzsong has quit [Read error: Connection reset by peer]
<wpcarro> I just wrote a Nix derivation and I'd like to share it with someone who doesn't use Nix. Is this possible?
<wpcarro> I'd rather they not depend on Nix in order to test my package
waleee has quit [Quit: WeeChat 2.4]
<manveru> basically makes a single executable with everything inside
<genesis> manveru : nix-bundle ?
<genesis> not very easy.
<manveru> i think it's using nix-bundle under the hood
<wpcarro> Hmm I was hoping to just share a .tar
<manveru> then you'd have to statically link
<manveru> but depends on your app?
<tilpner> You can just tar the closure and it should wor
<wpcarro> yeah that's what I'd like to do!
<tilpner> But it requires the user to untar to /nix
kenshinCH has quit [Quit: Page closed]
<wpcarro> that's okay for now
<clever> wpcarro: one sec
<tilpner> You can get the closure with nix-store -qR
<wpcarro> This involves, static linking. Right?
<clever> wpcarro: the tarball doesnt need static linking, nor -qR
<clever> make-system-tarball.nix will create the tar for you, and include a symlink pointing to a storepath so you dont have to guess what needs to be ran
<wpcarro> clever: thanks for sharing. I'm not running NixOS. Is that okay?
<clever> yep
<wpcarro> I was hoping for a command-line function to run that accepts my file.nix path and outputs the .tar
<wpcarro> I'll dig into this more to understand it better
<genesis> wpcarro : what are you waiting for ? a certain shade of green ?
<genesis> :o)
<clever> wpcarro: nix-build -E 'with import <nixpkgs> {}; callPackage <nixpkgs/nixos/lib/make-system-tarball.nix> { storeContents = [ { object = callPackage ./file.nix {}; symlink = "/thing"; } ]; }'
<clever> wpcarro: you can also add that expression to your file.nix, and then just nix-build it without any args
dhkl has joined #nixos
<wpcarro> clever: I really like the second suggestion. Thanks for also sharing the command
<wpcarro> This is exactly what I was after, so cheers
<{^_^}> [nixpkgs] @ryantm merged pull request #58910 → vapoursynth-mvtools: 20 -> 21 → https://git.io/fjIoD
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/fjLuI
zupo has joined #nixos
mehran has joined #nixos
<mehran> how can i config my system fonts? i used to do that by puting them in /etc/fonts/local.conf file but in nixos i can't copy anything to /etc
<{^_^}> [nixpkgs] @timokau opened pull request #59014 → nauty: disable cpu feature detection → https://git.io/fjLuW
<{^_^}> [nixpkgs] @Infinisil merged pull request #57782 → programs.gnupg: Support setting the gnupg program → https://git.io/fjvcx
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/fjLu4
<mehran> clever: i using this option to install font !
<mehran> i wanna change my system fonts to the fonts that i want
<mehran> for example i wanna change my system monospaced font to monaco or sans font to noto sans
<mehran> i'm looking for something that does the work same as /etc/fonts/local.conf file
<tilpner> Sounds like fonts.fontconfig.defaultFonts.monospace
<tilpner> Which you can find by "man configuration.nix" "/monospace"
jasongrossman has quit [Ping timeout: 250 seconds]
<manveru> i have this in my config for fonts https://www.irccloud.com/pastebin/36PASo46/
<manveru> probably should delete some of those sometime...
nakkle has joined #nixos
<mehran> thank you everyone :))
justanotheruser has quit [Ping timeout: 250 seconds]
waleee has joined #nixos
mehran has quit [Quit: leaving]
<{^_^}> [nixpkgs] @bendlas pushed 4 commits to master: https://git.io/fjLuw
Kakky has quit [Quit: Goodbye]
<nakkle> hey guys, I'm encountering a problem with a single user nix installation on ubuntu right now:
<nakkle> $ nix-channel --update
<nakkle> error: opening lock file '/nix/store/k3kxxi8jvi92gnwh8dz29acq26g50idd-libpfm-4.10.1.tar.gz.drv.lock': Permission denied
<nakkle> $ nix-env -i hello
<nakkle> error: opening lock file '/nix/store/xm0iwd46ldrl2fyfx6l2mwi9kw72md5r-latest.lock': Permission denied
<nakkle> and I really don't know what to do there. Could someone help me figuring out what I'm doing wrong?
elibrokeit has quit [Quit: A random quit message]
<srhb> nakkle: Probably you accidentally did something as root and now you're stuck with a lock file your user can't remove?
<{^_^}> [nixpkgs] @bendlas pushed 4 commits to release-19.03: https://git.io/fjLu6
<srhb> nakkle: If your user is intended to own the store, you can just recursively chown it.
<nakkle> thought that at first as well, but I'm pretty sure I didn't do anything as root, nix-binaries aren't even part of root`s path
endformationage has joined #nixos
<srhb> nakkle: Accidental sudo? :)
mabel has quit [Ping timeout: 246 seconds]
<srhb> nakkle: At least, I'm not aware of any bugs in this regard, though it's not impossible I just haven't heard of them -- I don't use single user mode myself.
<infinisil> I'm going to figure out how I can get the sha256 for `fetchFromGitHub { url = "https://github.com/NixOS/nixpkgs"; ... }` just from a local checkout at the needed revision
<infinisil> If anybody happens to have a ready snippet for that I wouldn't mind seeing that :)
<nakkle> /nix/store is owned by the right user, and the lock file for which I get `Permission denied` does not exist.
<nakkle> accidental sudo is highly unlikely:
<nakkle> sudo: nix-env: command not found
<nakkle> $ sudo nix-env
<tilpner> infinisil: Does nix-prefetch-git not work?
schneid3306 has joined #nixos
<infinisil> tilpner: I don't want to fetch anything, I have everything local already
<tilpner> Or does fetchFromGitHub want a different hash than fetchGit?
<infinisil> nix-prefetch-git --unpack would work
<tilpner> infinisil: Yes, you could try it with the local repo
<infinisil> Oh I see
jasongrossman has joined #nixos
<{^_^}> [nixpkgs] @bendlas closed pull request #58911 → linuxPackages.vhba: 20170610 -> 20190302 → https://git.io/fjIo7
<tilpner> (I don't have my nixpkgs checkout yet, so I can't try)
<tilpner> You might need to provide the current revision to nix-prefetch-git if master isn't the revision you want
wfranzini has quit [Read error: Connection reset by peer]
<infinisil> Ah no it's nix-prefetch-url --unpack that would work
<tilpner> Did you try it?
<infinisil> Not yet, hold on
wfranzini has joined #nixos
<srhb> nakkle: Maybe throw more -v's at nix-env and pastebin the error?
<tilpner> nakkle: Who owns the lockfile it errors on? If you never ran it as root, how could it be owned by root?
<srhb> It doesn't exist.
<tilpner> Oh
rauno has joined #nixos
cmacrae` has joined #nixos
<tilpner> And /nix/store is +x?
<srhb> I feel like I've seen somithing similar when converting a single user to a multi user install, but not sure.
drakonis1 has joined #nixos
cmacrae has quit [Ping timeout: 255 seconds]
<nakkle> ok, figured it out, all the files in /nix/store had the correct permissions, but /nix/store itself was suddenly owned by root, and no command could create lock files in the store anymore. Thanks for your help guys :)
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<srhb> Ah, good.
cyphase has quit [Ping timeout: 250 seconds]
<OmnipotentEntity> on my machine, /nix/store is owned by root:nixbld and is drwxrwxr-t
<OmnipotentEntity> I assume this is the normal permissions @nakkle
<srhb> omnipotententity: It is for a multi user setup, but not a single user setup.
<srhb> omnipotententity: (In a single user setup, it's supposed to be user:user for whatever user is intended to use Nix)
<OmnipotentEntity> oic, that makes sense.
<nakkle> yeah, compared the permissions to another system with a single user installation I had lying around, and there it was user:user as well
cyphase has joined #nixos
jabranham has joined #nixos
<therealwaphire[m> samueldr: any luck with solaar?
<samueldr> therealwaphire[m: ?
<nakkle> not sure what caused the permissions to go wild though. As I said, root doesn't know of any nix commands at all
<therealwaphire[m> I'm having the same permissions problem after the update you pushed
<infinisil> tilpner: Woo it worked :o
<samueldr> therealwaphire[m: the PR was merged a small while ago, while apparently a similar effort was going on
<samueldr> therealwaphire[m: hmmm, weird
<therealwaphire[m> do I need to do anything else?
<therealwaphire[m> I mean, other than updating the package?
<infinisil> Same hash for `nix-prefetch-url --unpack https://github.com/NixOS/nixpkgs/archive/9b3e5a3aab7.tar.gz` as for `nix-prefetch-git /path/to/checkout`
<samueldr> maybe, first of all, which channel are you on?
<therealwaphire[m> like, adding the suid bit to the solaar executable?
<therealwaphire[m> 19.03
<therealwaphire[m> actually, was on 19.03. I upgraded to unstable just to see if it had latest plasma. But yeah, same thing
<samueldr> right, the update wasn't backported to 19.03
<therealwaphire[m> but I am using the solaar package from unstable
<therealwaphire[m> even when I was on 19.03
<samueldr> though it should be in unstable, and the update _does_ need `services.udev.packages = [ pkgs.solaar ];` or equivalent to be added [...]
<samueldr> ah
<samueldr> and with the udev packages, you used the right solaar package (depending on how you used the unstable one)
<therealwaphire[m> oh, one sec, let me add that and check
<samueldr> be wary of the `pkgs.solaar` and use the right invocation to get the unstable one
<samueldr> for 19.09, there'll be a new module with an option specific to that https://github.com/NixOS/nixpkgs/blob/61613a2512101e51463a55d93d5c92eafff79516/nixos/modules/hardware/logitech.nix
<therealwaphire[m> worked :)
<therealwaphire[m> thank you so much :)
<therealwaphire[m> <samueldr "for 19.09, there'll be a new mod"> oh this is great :)
<samueldr> just a note about implementation: "packages" within nix cannot do more than add files with limited permissions in /nix/store; explaining why there is the need for the udev packages thing
<samueldr> when nixos builds the system, it uses the udev.packages option to merge udev rules from the packages and makes it accessible at a specific location for udev
<samueldr> (in case you're wondering why)
<therealwaphire[m> got it!
<therealwaphire[m> yeah, that cleared up the problem for me
<therealwaphire[m> Is there a way to use the latest plasma btw, while using 19.03?
<samueldr> probably, but that's also probably way harder to pull off right
<samueldr> (alternatively: I don't really know how to do it right)
<infinisil> Huh, I just found this in nix-prefetch-git: ` find "$dir" -name .git -print0 | xargs -0 rm -rf` Is there any difference to just doing `rm -rf "$dir/.git"`?
<therealwaphire[m> I mean, I upgraded to unstable to get latest plasma but even in unstable, the plasma version is the last stable release
<therealwaphire[m> so yeah, it should be way harder to do
Makaveli7 has joined #nixos
<samueldr> there are risks that plasma would pull the wrong dependencies, or there would be mixed Qt stuff and that _can_ be bad for now
<samueldr> hmm, maybe we don't have it packaged it yet, or landed in the channel yet?
<samueldr> infinisil: subdirs
<infinisil> Ah, submodules and stuff
<samueldr> a/.git a/b/.git a/c/.git
mabel has joined #nixos
<samueldr> likely
<infinisil> Okay I don't need that, nixpkgs doesn't have any
<therealwaphire[m> <samueldr "hmm, maybe we don't have it pack"> yeah, I guess it's one of those
<therealwaphire[m> not that it matters tho
cmacrae` has quit [Quit: ERC (IRC client for Emacs 26.1)]
<therealwaphire[m> it's just that, coming from arch I feel the need to be on the bleeding edge
<samueldr> looking at how gnome updates, it's hard work and it happens over a couple weeks/months into a feature branch
<samueldr> maybe the same for plasma, though I don't know who/where/when it happens :)
dhkl has quit [Ping timeout: 264 seconds]
<therealwaphire[m> ah, no problem
<therealwaphire[m> one more thing if I needed custom themes for lightdm or sddm, where would I put them in NIx?
<therealwaphire[m> s/NIx/NixOS
<samueldr> that's a hard question to answer
<samueldr> I don't know for lightdm
<samueldr> but for sddm it's not obvious
* samueldr digs up an old branch
<{^_^}> [nixpkgs] @globin merged pull request #59008 → grafana: 6.1.0 -> 6.1.1 → https://git.io/fjLRj
<{^_^}> [nixpkgs] @globin pushed commit from @WilliButz to master « grafana: 6.1.0 -> 6.1.1 »: https://git.io/fjLzs
<samueldr> :/ looks like I don't have the branch anymore
<samueldr> or it's in another repo
<manveru> though i dunno if that helps
<samueldr> I didn't end up finalizing any of it since I just went and used autologin + i3lock in a custom X session
<therealwaphire[m> ah, okay
<{^_^}> [nixpkgs] @globin pushed 2 commits to release-19.03: https://git.io/fjLzW
<{^_^}> [nixpkgs] @grahamc merged pull request #59012 → leela-zero: 0.16 -> 0.17 → https://git.io/fjL0X
<{^_^}> [nixpkgs] @grahamc pushed 2 commits to master: https://git.io/fjLzl
<samueldr> with sddm _at the time_ the qml version was too far back for the sddm theme I was interested in
a777826537 has quit [Ping timeout: 268 seconds]
<samueldr> (too far being one from bleeding)
<therealwaphire[m> oh, well, okay
<manveru> therealwaphire[m: did the kde rebuild work?
<therealwaphire[m> <manveru "therealwaphire: did the kde rebu"> going to do it now
<Myrl-saki> I may have found a bug "on" findStableDevPath.
atopuzov[m] has joined #nixos
<Myrl-saki> Actually, not exactly.
<Myrl-saki> Yeah, this is too edge-case to consider. Basically, loop devices can sometimes leave hanging symlinks on /dev/disk/by-id.
zupo has joined #nixos
o1lo01ol1o has joined #nixos
ingenieroariel has joined #nixos
ingenieroariel is now known as Guest9731
<Guest9731> Hello everyone - I am trying to configure a lenovo yoga laptop for a teenage girl with nixos 19.03 and need help figuring something out.
Ariakenom has quit [Quit: Leaving]
o1lo01ol_ has quit [Ping timeout: 268 seconds]
<infinisil> tilpner: Alright I figured out something *much* quicker than nix-prefetch-git
<Guest9731> In particular: I can get monitor-sensor to tell me normal, left, inverted when I rotate the screen, and xrandr to rotate it when I pass it manually but I don't know how to write a nixos service that would take care of doing that all the time
<infinisil> Hold on first need to verify it working properly
sumTimes has joined #nixos
arjen-jonathan has quit [Ping timeout: 245 seconds]
<goibhniu1> Hi Guest9731, hardware.sensor.iio.enable looks like it might be relevant
<Guest9731> goibhniu1: thanks, that is what I did to get monitor-sensor to work
<Guest9731> and it does work
<Guest9731> this works:
<Guest9731> onitor-sensor | grep "orientation changed" Accelerometer orientation changed: left-up Accelerometer orientation changed: bottom-up Accelerometer orientation changed: normal
<infinisil> Set p to the git repo you want to get the hash of, then `tmp=$(mktemp -ud); cp -rl "$p" "$tmp"; rm -rf "$tmp/.git"; nix-hash --type sha256 --base32 "$tmp"; rm -rf "$tmp"`
<infinisil> This approximately takes 2 seconds
<Guest9731> and this works: xrandr --output eDP-1 --rotate left
<infinisil> And doesn't write anything to disk
<infinisil> tilpner: ^
<goibhniu1> ah, cool
<tilpner> infinisil: Are you sure? nix-prefetch-git does more things in make_deterministic_repo
<tilpner> Like repacking and pruning
<tilpner> Which... would live in .git, so yes
<infinisil> tilpner: Ah yeah, this only works with some assumptions, like no submodules, no keepDotGit, etc.
<infinisil> Which is just what I need
<infinisil> For `fetchFromGitHub { owner = "NixOS"; repo = "nixpkgs"; ... }`
<Guest9731> goibhniu1: here is what I think I can do
o1lo01ol1o has quit [Remote host closed the connection]
elibrokeit has joined #nixos
<Guest9731> write a script like this one: monitor-sensor | awk '{if(/changed:/) print $4}' | xrandr --orientation
<Guest9731> and make it run continuosly by defining a systemd service on my configuration.nix
linarcx has quit [Ping timeout: 268 seconds]
<gchristensen> fyi: the nixos infra team is making an interesting experiment, of changing from cache.nixos.org from Fastly -> S3 to Fastly -> CloudFront -> S3 in order to try and make https://screenshotscdn.firefoxusercontent.com/images/08ddb3e5-45c4-45ae-b51c-6b30cbab8f13.png nicer
<srhb> Yo dawg, I heard you like CDN, ...
linarcx has joined #nixos
dave_uy has quit [Quit: The Lounge - https://thelounge.github.io]
dave_uy has joined #nixos
<manveru> what could go wrong? :)
<nh2[m]> gchristensen: do you know if it is understood why these errors exist in the first place?
<gchristensen> yeah
<mikky> funny thing with setting Xorg DPI via `xrandr` - it does not apply right away, only on new apps but it *always* applies "system-wide" when I open a new Chromium window (or any other chromium-based browser). What's the trigger?
<nh2[m]> gchristensen: why is it? (or was the reply to the "what could go wrong?")
<{^_^}> [nixpkgs] @bendlas pushed to master « chromium: 73.0.3683.86 -> 73.0.3683.103 »: https://git.io/fjLgf
<gchristensen> the simple answer is that 14,300 errors out of 115,400,000 requests is extremely within the AWS S3 SLA of 99%. the source of these errors are typically correlated to S3 having slow response times
<{^_^}> [nixpkgs] @feijoas opened pull request #59016 → Chili sddm theme → https://git.io/fjLgJ
<{^_^}> [nixpkgs] @globin pushed 2 commits to master: https://git.io/fjLgU
<{^_^}> [nixpkgs] @globin merged pull request #58995 → vscode: 1.32.3 -> 1.33.0 → https://git.io/fjLlX
mabel has quit [Ping timeout: 250 seconds]
domogled has joined #nixos
<{^_^}> [nixpkgs] @bendlas pushed to release-19.03 « chromium: 73.0.3683.86 -> 73.0.3683.103 »: https://git.io/fjLgm
<DigitalKiwi> gchristensen: is that what the corrupt nar messages i see are ?
<gchristensen> the configuration change has been delayed until we can do more testing
<gchristensen> DigitalKiwi: what is the corrupt nar message?
<{^_^}> [nixpkgs] @vdemeester opened pull request #59017 → podman: 1.1.2 -> 1.2.0 → https://git.io/fjLgn
<DigitalKiwi> and failed to unpack xz
<gchristensen> can you paste the exact contents? that would be helpful
<DigitalKiwi> uh i'll make a note of it the next time i see one or try and find if i have it somewhere...i have mentioned it before but probably on a deleted paste
<gchristensen> thanks
<gchristensen> it is probably a 503 error that you're seeing
<DigitalKiwi> i know other people have had it too because when i went searching for it github issues/discourse messages are around
<samueldr> I think it's "error 200" one, where weirdly it's sent something and it seems to be incomplete
<DigitalKiwi> and it's possible there are multiple problems i'm talking about
<gchristensen> right, the HTTP status code has been sent before the body is completely delivered
<samueldr> seen it sometimes, but much less frequently than 503s, and 503s are infrequent in my CDN region
<clever> usually a code 200 includes the expected size of the body
<samueldr> and yes, there definitely is more than one problem, and it looks hard to introspect
<clever> and if you dont get enough bytes, it should properly register as a failure
<gchristensen> clever: right
<gchristensen> I guess Nix doesn't detect that?
<gchristensen> I wonder if nix streams curl's data to xz as it arrives, and then terminates when it loses
<gchristensen> I wonder if nix streams curl's data to xz as it arrives, and then terminates when it closes
<samueldr> kinda does, but in a not-nice way
<DigitalKiwi> i usually attribute it to bad wifi/vpn
stepcut has joined #nixos
<ajs124> what's the difference between python3Packages and python3.pkgs?
<gchristensen> DigitalKiwi: that *also* has an impact :)
Ariakenom has joined #nixos
<samueldr> though I think there might be multiple of _that_ subclass of errors
o1lo01ol1o has joined #nixos
<samueldr> 2018-11-14 01:03 <clever> warning: unable to download 'http://nas.localnet:8081/nar/0aw447l5f2zwf9lx23mq0vcaxmwscjah1l1hg277s6avmnjqqpln.nar.xz': HTTP error 200 (curl error: Transferred a partial file); retrying in 296 ms
<gchristensen> in summary, AWS CloudFront is a really really awesome CDN and works extremely well with S3. Fastly might also be a really really awesome CDN, but not out of the box when hooked up to S3 :P
<DigitalKiwi> (i'm not certain it is but it's a possibility that i can use to explain it away ;p )
<globin> ajs124: python3.pkgs is the new, preferred attr
o1lo01ol1o has quit [Remote host closed the connection]
<samueldr> disregard, that's not cache.nixos.org
<gchristensen> especially since Fastly can't reasonable keep our entire cache hot in their endpoints
<clever> samueldr: nas.localnet had a bug at one point, that would hang up clients after 60 seconds, if they failed to download the entire body within that time perior
<ajs124> globin, any technical differences? or same thing different name?
<samueldr> yeah, was searching for the error 200, but didn't look at the context until after sharing
<clever> -rw-r--r-- 1 cachecache nogroup 120M Nov 13 21:01 /var/lib/cachecache/cachedir/0aw447l5f2zwf9lx23mq0vcaxmwscjah1l1hg277s6avmnjqqpln.nar.xz
<clever> samueldr: but the above file isnt that bit
<globin> ajs124: no other differences, i'd imagine that pythonXPackages will be removed at some point
<samueldr> clever: ignore that, I didn't look at the context before sharing the line :)
<ajs124> globin++
<{^_^}> globin's karma got increased to 3
<{^_^}> [nixpkgs] @globin pushed 2 commits to release-19.03: https://git.io/fjLg0
<DigitalKiwi> like when i had realllly slow nix operations and it was fast on other machines and i thought it was zfs but really i had sync=always which would have been slow on any fs... and at one point i thought that might have been contributing to the bad nar file messages as i thought it taking so long made the curl timeout
<samueldr> in the #nixos logs there are a couple more relevant instances https://logs.nix.samueldr.com/nixos/search?q=error+200
<{^_^}> [nixpkgs] @globin merged pull request #59014 → [19.03] nauty: disable cpu feature detection → https://git.io/fjLuW
<{^_^}> [nixpkgs] @globin pushed commit from @timokau to release-19.03 « nauty: disable cpu feature detection »: https://git.io/fjLgz
<{^_^}> [nixpkgs] @PombeirP opened pull request #59018 → gomobile: init at 20190319-167ebed → https://git.io/fjLgg
<{^_^}> [nixpkgs] @vdemeester opened pull request #59019 → buildah: 1.7.1 -> 1.7.2 → https://git.io/fjLg2
<{^_^}> [nixpkgs] @globin merged pull request #59001 → gramps: fix build → https://git.io/fjLBW
<{^_^}> [nixpkgs] @globin pushed commit from @Taneb to master « gramps: fix build »: https://git.io/fjLgV
stepcut has quit [Ping timeout: 246 seconds]
<DigitalKiwi> making sync=standard didn't fix the curl tho but at least it's not unbearably slow anymore (things that should take a few seconds or minutes were taking 30 minutes)
stepcut has joined #nixos
<{^_^}> [nixpkgs] @gebner pushed to master « vdirsyncer: cleanup »: https://git.io/fjLg6
mabel has joined #nixos
stepcut has quit [Remote host closed the connection]
linarcx has quit [Ping timeout: 246 seconds]
<mikky> I need to add a custom CA, trying security.pki.certificateFiles = [ "/root/customcertroot.crt" ]; At rebuild getting error 'cat: /root/customcertroot.crt: No such file or directory'. The file is there and is readable.
<clever> mikky: dont quote the path
<{^_^}> [nixpkgs] @gebner pushed to master « vdirsyncer: more cleanup »: https://git.io/fjLgy
linarcx has joined #nixos
<samrose> I am seeing 2 versions of openssl in my /nix/store and am wondering if someone can give me pointers on how to consolidate this? https://gist.github.com/samrose/a6f6ad2d8c3a7f98fc80c97dd106fabd
tuelz has quit [Quit: WeeChat 2.4]
<clever> samueldr: it is normal to see duplicates of packages, thats how nix works
<samueldr> clever: I know, but maybe samrose might want to be told it too ;)
<samrose> thanks clever
<clever> too many sam*'s lol
<samrose> I am trying to run a binary that does dynamic linking
<gchristensen> ENOSAMSPC
<clever> samrose: you want to use nix to get the path to openssl, nix-build '<nixpkgs>' -A openssl is one way
<samrose> and I get error like /nix/store/x36nlm3ndxfhnli8c8y3ydh78cpzpf09-openssl-1.0.2r/lib/libssl.so.1.0.0: no version information available I thought maybe my issue could be these multiple version
<samrose> although nix should be allowing me to point to one or the other
rauno has quit [Remote host closed the connection]
stepcut has joined #nixos
rcshm has joined #nixos
buckley310 has joined #nixos
<{^_^}> [nixpkgs] @globin pushed commit from @Taneb to release-19.03 « gramps: fix build »: https://git.io/fjLgA
<{^_^}> [nixpkgs] @vdemeester opened pull request #59020 → traefik: 1.7.9 -> 1.7.10 → https://git.io/fjLgj
linarcx has quit [Quit: WeeChat 2.4]
<{^_^}> [nixpkgs] @globin merged pull request #59013 → Backport souffle: 1.2.0 -> 1.5.1 → https://git.io/fjLEY
<{^_^}> [nixpkgs] @globin pushed commit from @thoughtpolice to release-19.03 « souffle: 1.2.0 -> 1.5.1, co-maintain »: https://git.io/fjL2e
hellrazor has quit [Ping timeout: 244 seconds]
linarcx has joined #nixos
<{^_^}> [nixpkgs] @globin merged pull request #58985 → dnscrypt-proxy2: 2.0.21 -> 2.0.22 → https://git.io/fjLG6
<{^_^}> [nixpkgs] @globin pushed 2 commits to master: https://git.io/fjL2I
mabel has quit [Ping timeout: 255 seconds]
linarcx has quit [Ping timeout: 240 seconds]
uranther has quit [Quit: Connection closed for inactivity]
ddellacosta has joined #nixos
zupo has quit [Quit: Textual IRC Client: www.textualapp.com]
linarcx has joined #nixos
zupo has joined #nixos
Tucky has quit [Quit: WeeChat 2.2]
<{^_^}> [nixpkgs] @globin merged pull request #58954 → home-assistant: 0.90.2 -> 0.91.1 → https://git.io/fjLeI
<{^_^}> [nixpkgs] @globin pushed 4 commits to master: https://git.io/fjL2Z
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
sumTimes has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @globin merged pull request #58955 → mosquitto: 1.5.5 -> 1.5.8 and add systemd support → https://git.io/fjLew
<{^_^}> [nixpkgs] @globin pushed commit from @peterhoeg to release-19.03 « mosquitto: 1.5.5 -> 1.5.8 and add systemd support »: https://git.io/fjL2c
gal_bolle has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @ryantm merged pull request #58874 → rsyslog: 8.39.0 -> 8.1903.0 → https://git.io/fjI2j
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/fjL2W
<{^_^}> [nixpkgs] @globin merged pull request #58922 → xawtv: 3.105 -> 3.106 → https://git.io/fjIPf
<{^_^}> [nixpkgs] @globin pushed commit from @r-ryantm to master « xawtv: 3.105 -> 3.106 »: https://git.io/fjL2l
<{^_^}> [nixpkgs] @globin merged pull request #58921 → wolfssl: 3.15.7 -> 4.0.0 → https://git.io/fjIi1
<{^_^}> [nixpkgs] @globin pushed commit from @r-ryantm to master « wolfssl: 3.15.7 -> 4.0.0 »: https://git.io/fjL2B
stepcut has quit [Ping timeout: 246 seconds]
<DigitalKiwi> https://gist.github.com/Kiwi/8caa1939d24fdb61dd45ce9af3721541 here are some various errors related to corrupt nar narinfo xz curl and nixos cache that i pulled from my search history and some issues i'll update it when i have more useful information to add
<{^_^}> [nixpkgs] @globin pushed commit from @r-ryantm to master « workrave: 1.10.23 -> 1.10.31 »: https://git.io/fjL2z
<{^_^}> [nixpkgs] @globin merged pull request #58920 → workrave: 1.10.23 -> 1.10.31 → https://git.io/fjIia
<{^_^}> [nixpkgs] @globin merged pull request #58919 → wings: 2.2.1 -> 2.2.3 → https://git.io/fjIiZ
<{^_^}> [nixpkgs] @globin pushed commit from @r-ryantm to master « wings: 2.2.1 -> 2.2.3 »: https://git.io/fjL2a
Jetien_ has quit [Ping timeout: 268 seconds]
pie__ has quit [Ping timeout: 246 seconds]
<globin> gchristensen: ^
erictapen has quit [Ping timeout: 250 seconds]
<globin> wrt cache errors
<gchristensen> thanks :)
<gchristensen> framing ... DigitalKiwi ipv6?
erictapen has joined #nixos
<DigitalKiwi> funnily enough i disabled ipv6 in the course of troubleshooting and it didn't really change anything
capisce has joined #nixos
m1sosoup has joined #nixos
dhkl has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lovesegfault has joined #nixos
zupo has joined #nixos
fendor has quit [Ping timeout: 246 seconds]
<DigitalKiwi> (it's probably already disabled by my isp/vpn)
erasmas has joined #nixos
linarcx has quit [Ping timeout: 258 seconds]
<capisce> any idea why Alt-F8 would fail to switch virtual terminals?
<srhb> capisce: We don't start that many.
linarcx has joined #nixos
<clever> capisce: most linux machines only have tty1 thru tty7 started normally
<capisce> "The NixOS manual is available on virtual console 8 (press Alt+F8 to access) or by running nixos-help."
<srhb> capisce: If the manual service is on, that's a bug, yeah
<gchristensen> this is during installation?
<capisce> but I'm not able to switch to any virtual terminal
<srhb> capisce: Oh. :P
<capisce> no, on an old install, which now hangs after logging in through the graphical interface
<capisce> so I wanted to find the tty
<srhb> Sounds like you've crashed.
<capisce> for some reason it also doesn't list older generations when it boots any more
<srhb> o_O
<clever> capisce: tty8 is the graphical interface
<srhb> clever: That's usually F7 though?
<srhb> Sounds like all manner of things are wrong here :P
* clever double-checks
zupo has quit [Ping timeout: 250 seconds]
<capisce> well, it's still responsive in the logging screen, and when I press the power off button I briefly see a tty
<clever> srhb: your right, 7 is xorg
<clever> capisce: if graphical is up, you must use ctrl+alt+f8
<clever> capisce: or ctrl+alt+f1 to get a normal text login
<capisce> ah, that worked, thanks
<linarcx> Gyus. i'm a persian user. When i'm working with persian stuffs(like video subtitle, texts,...) i like to use FontA and when i'm working in english stuffs, i want to use FontB. How do this in nixos?
<linarcx> In Arch, i can simply edit: `/etc/fonts/locale.conf`.
<linarcx> But how do that in nixos?
<clever> linarcx: i think you want to set i18n.extraLocaleSettings
<linarcx> clever: Let me try it.
PLPD-Bot has quit [Remote host closed the connection]
wfranzini has quit [Remote host closed the connection]
<clever> linarcx: for for that are on lines 37-46 of the same file
<capisce> so "nix-env --list-generations" shows the generations I expected, any clue as to why I'm not able to select them at boot time?
mabel has joined #nixos
<clever> capisce: is /boot/ correctly mounted when you run nixos-rebuild switch?
<linarcx> clever: Why this option: `i18n.extraLocaleSettings ` isn't available in https://nixos.org/nixos/options.html?
<{^_^}> #36424 (by jfrankenau, 1 year ago, merged): nixos/i18n: add option for extra locale settings
<clever> linarcx: it was added on march 7th of 2018
<clever> linarcx: options.html may be from 18.03?, which was forked at the start of march
o1lo01ol1o has joined #nixos
<clever> wait, the pr was opened in march 7th, but not merged until november
<capisce> clever: nixos-rebuild switch completes successfully, and there is a /boot with EFI and loader, anything else to check?
PLPD-Bot has joined #nixos
<clever> so it also will be missing from 18.09
<linarcx> clever: Yes, how much take time to update that package?
<clever> capisce: read the config files in /boot/, do they contain the generations you expect?
<clever> linarcx: it should already be in nixos-unstable, and it will be in 19.03 when that comes out
<linarcx> clever: Thank you so much.
<capisce> clever: /boot/loader/entries contains a lift of generations, looks proper
<DigitalKiwi> is there a standard way of reporting when a package is out of date? or is it a do a PR patches welcome thing? :P
<capisce> anyway, now that I'm at the shell, how do I set the default generation to an older one?
<clever> capisce: double-check your partitions, do you happen to have 2 /boot's?
<clever> capisce: /nix/var/nix/profiles/system-42-link/bin/switch-to-configuration (switch|boot)
<capisce> clever: there's just one /boot partition, /dev/sda2
<clever> capisce: that will basically be the same as nixos-rebuild (switch|boot), but rather then building, it directly uses an old version
<{^_^}> [nixpkgs] @globin merged pull request #58992 → herwig: 7.1.4 -> 7.1.5 → https://git.io/fjLWK
<{^_^}> [nixpkgs] @globin pushed 2 commits to master: https://git.io/fjLak
<das-g[m]> DigitalKiwi: You can file an issue if you can't or don't want to make a PR. But PRs are probably more likely to be acted on.
<DigitalKiwi> like for example i know keepassxc is out of date because the browser extension told me there's a new version so i thought about updating it and doing a PR but then i looked at their repo and a few people are having problems with it so i'm not sure it should be updated so that might be a bad example...
o1lo01ol_ has joined #nixos
<DigitalKiwi> and like archlinux has an interface for reporting out of date packages so i wondered if that existed in some form somewhere
o1lo01ol1o has quit [Remote host closed the connection]
<das-g[m]> Also make sure to check whether there aren't already issues or PRs about a particular version bump.
<DigitalKiwi> i search nixos issues a few hundred times a week :D
<das-g[m]> :-P
<jabranham> DigitalKiwi: the wiki has a nice article on how to submit patches to update a package: https://nixos.wiki/wiki/Nixpkgs/Update_a_package
jtojnar has quit [Quit: jtojnar]
jtojnar has joined #nixos
lord| has quit [Read error: Connection reset by peer]
<infinisil> How could I override *all* haskell packages to have enableLibraryProfiling disabled by default?
<infinisil> Something with overriding haskell's `mkDerivation`, but I'm usure how that could be done
<infinisil> Trying to figure it out right now, but if somebody has done that before I'd love to know
lord| has joined #nixos
<capisce> something is still failing when using the graphical login even with an older generation, although the machine doesn't hang, I can switch to another virtual terminal
<capisce> using xmonad, any logs that could pinpoint any problems?
<capisce> or X11 logs
sumTimes has joined #nixos
drakonis1 has quit [Quit: WeeChat 2.3]
<capisce> alright, I'm able to run X programs manually with DISPLAY=:0 from the virtual terminal, so it seems to be xmonad having trouble starting
civodul has quit [Quit: ERC (IRC client for Emacs 26.1)]
Myhlamaeus has joined #nixos
steve-chavez has joined #nixos
das_j has quit [Remote host closed the connection]
linarcx has quit [Quit: WeeChat 2.4]
das_j has joined #nixos
drakonis_ has joined #nixos
<steve-chavez> Does anyone run postgres 11? I can switch from 9.6 to 10 with no problem. However for postgres 11 I get errors like `kill: (6844) - No such process`
dbmikus has joined #nixos
linarcx has joined #nixos
drakonis has quit [Ping timeout: 245 seconds]
<infinisil> Alright I got it, it's the same as for package overrides: mkDerivation = args: hsuper.mkDerivation (args // { enableLibraryProfiling = false; });
<{^_^}> [nixpkgs] @ryantm merged pull request #58776 → python37Packages.cmd2: 0.9.10 -> 0.9.11 → https://git.io/fjI3x
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/fjLaw
<infinisil> That's in a .override { overrides = hsuper: hself: { ... }; }
<{^_^}> [nixpkgs] @ryantm merged pull request #58903 → tlp: 1.1 -> 1.2.1 → https://git.io/fjIw5
<{^_^}> [nixpkgs] @ryantm pushed 4 commits to master: https://git.io/fjLa6
nschoe has quit [Quit: Program. Terminated.]
<{^_^}> [nixpkgs] @ryantm merged pull request #58891 → gitAndTools.subgit: 3.2.4 -> 3.3.6 → https://git.io/fjIVH
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/fjLa1
drakonis_ has quit [Ping timeout: 258 seconds]
drakonis_ has joined #nixos
ubert has quit [Quit: Leaving]
drakonis_ has quit [Ping timeout: 258 seconds]
mabel has quit [Ping timeout: 246 seconds]
knupfer has joined #nixos
<capisce> switching to i3 in configuration.nix works, so it's definitely an xmonad issue, strange as I haven't tinkered with anything in a long while
<capisce> still curious why I don't get to choose an older generation at boot time though
<Guest9731> I almost solved my iio to xrandr problem but something weird goes on within the service
rcshm has quit [Remote host closed the connection]
rcshm has joined #nixos
<Guest9731> that is what I put in my configuration.nix to try and get autorotate to work on a 2-in-1 with kde, but I get a permission error
<Guest9731> it only works when I use the terminal but not as a systemd service
<Guest9731> This is what journalctl says after I call xrandr: "Can't open display", no stack trace
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
<Guest9731> could it be that xrandr ends up running outside of my xsession ... if so, are there ways to get a "pointer" to my xsession from nixos?
stepcut has joined #nixos
mabel has joined #nixos
stepcut has quit [Ping timeout: 258 seconds]
lovesegfault has quit [Quit: WeeChat 2.4]
erasmas has quit [Ping timeout: 250 seconds]
Glider_IRC_ has joined #nixos
erasmas has joined #nixos
goibhniu2 has joined #nixos
Glider_IRC__ has quit [Ping timeout: 250 seconds]
sigmundv has quit [Ping timeout: 244 seconds]
goibhniu1 has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @jabranham opened pull request #59022 → syncthing 1.1.0 -> 1.1.1 → https://git.io/fjLVa
Guest9731 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @matthewbauer merged pull request #58972 → gcc-arm-embedded: add darwin support → https://git.io/fjLqA
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjLVw
<jabranham> Any plans to merge staging soon? It's >500 commits ahead of master
<gchristensen> wow
knupfer has quit [Ping timeout: 264 seconds]
alex`` has quit [Ping timeout: 268 seconds]
joepie91 is now known as mr`pie
<kalbasit> it should be merged to staging-next first right?
stepcut has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #58996 → vscode-extensions.vscodevim.vim: 1.2.0 -> 1.3.0 → https://git.io/fjL8j
<{^_^}> [nixpkgs] @veprbl pushed commit from @bkchr to master « vscode-extensions.vscodevim.vim: 1.2.0 -> 1.3.0 (#58996) »: https://git.io/fjLV6
mr`pie is now known as joepie91
alex`` has joined #nixos
ee1943 has joined #nixos
<ee1943> Hello, is it OK to ask questions about nix running on macOS in this channel?
<kalbasit> ee1943: sure
<samrose> clever: you wrote earlier "you want to use nix to get the path to openssl, nix-build '<nixpkgs>' -A openssl is one way" that worked. But wouldn't everything that needs this specific version of openssl just use this same derivation? Why would nix also place an identical openssl derivation on the same machine?
<clever> samrose: it may be an older version, due to upgrading things
<clever> samrose: or it may be a 32bit version
<samrose> hmm could be the 32 bit
<samrose> otherwise each is labeled `openssl-1.0.2r`
<{^_^}> [nixpkgs] @dotlambda merged pull request #58833 → python37Packages.ldap: 3.1.0 -> 3.2.0 → https://git.io/fjIB5
<{^_^}> [nixpkgs] @dotlambda pushed 4 commits to master: https://git.io/fjLVF
<{^_^}> [nixpkgs] @dotlambda pushed to release-19.03 « python.pkgs.ldappool: fix build »: https://git.io/fjLVb
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
mabel has quit [Ping timeout: 258 seconds]
stepcut has quit [Remote host closed the connection]
zupo has joined #nixos
stepcut has joined #nixos
dsiypl4 has joined #nixos
m0rph has joined #nixos
stepcut has quit [Ping timeout: 255 seconds]
m1sosoup has quit [Read error: Connection reset by peer]
drakonis has joined #nixos
m0rph has quit [Client Quit]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
page has quit [Quit: leaving]
mabel has joined #nixos
a777826537 has joined #nixos
page has joined #nixos
cyraxjoe has quit [Ping timeout: 245 seconds]
cyraxjoe has joined #nixos
steve-chavez has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @matthewbauer opened pull request #59024 → haskell: add fpcomplete mirror, use hackage mirrors in more places → https://git.io/fjLwZ
<linarcx> Anyone here to help me to create a package for this repo: https://github.com/cylgom/ly
zupo has joined #nixos
cyraxjoe has quit [Ping timeout: 246 seconds]
cyraxjoe has joined #nixos
MichaelRaskin has joined #nixos
<DigitalKiwi> jabranham: thanks for the link
sam has joined #nixos
sam is now known as Guest83620
rauno has joined #nixos
<NemesisD> i'm using a derivation (https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/package-management/conda/default.nix) that uses buildFHSUserEnv. i need to run a script in that environment non-interactively. if i run the command from that drv it drops me into an env with the tools i need available, but if i try to pass it -c or a script file, they're not
<NemesisD> so it seems like there are cases where the `profile` script is not respected
orospakr[m] has joined #nixos
periklis has quit [Remote host closed the connection]
ng0 has joined #nixos
iceypoi has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #58559 → dotnetPackages.FsLexYaccRuntime: init at 6.1.0 → https://git.io/fjTAD
<{^_^}> [nixpkgs] @vbgl pushed to master « dotnetPackages.FsLexYaccRuntime: init at 6.1.0 »: https://git.io/fjLwi
ryantrinkle has left #nixos [#nixos]
dbmikus has quit [Ping timeout: 245 seconds]
Guest83620 has quit [Ping timeout: 250 seconds]
dbmikus has joined #nixos
<linarcx> clever: How use `i18n.extraLocaleSettings` to specify two different fonts?
<clever> linarcx: how would you normally specify that in the config file?
<linarcx> clever: I don't use it before.
<{^_^}> [nixpkgs] @andir merged pull request #58997 → gettext: apply patch for CVE 2018-18751 → https://git.io/fjL4s
<{^_^}> [nixpkgs] @andir pushed 2 commits to staging-next: https://git.io/fjLwX
<clever> linarcx: not sure how that would be done on nixos
<linarcx> Gyus. i don't want to use sddm anymore. just use xinit and startx. How do that in nixos?
<clever> linarcx: startx isnt supported on nixos
<linarcx> clever: Why?
<clever> linarcx: nobody has bothered ot make it work
<iceypoi> actually, there's a desktop manager startx
<iceypoi> you end up booting into just console mode and can *startx* by command line directly
<shazow> linarcx: services.xserver.displayManager.startx.enable = true;
<clever> iceypoi: ah, that must be new
<linarcx> clever: Yes :)
<linarcx> shazow: Thank you.
<shazow> np!
<iceypoi> services.xserver.desktopManager.default = "none";
<iceypoi> you need to set this too
<shazow> ^ true
mabel has quit [Ping timeout: 250 seconds]
<linarcx> shazow: Awesome :)))
dhkl has quit [Ping timeout: 245 seconds]
dhkl has joined #nixos
linarcx has quit [Quit: WeeChat 2.4]
freeman42x has joined #nixos
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @gnidorah opened pull request #59027 → munt: init at 2.3.0 → https://git.io/fjLrv
lovesegfault has quit [Quit: WeeChat 2.4]
lovesegfault has joined #nixos
vcunat has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/ce16af3c0a8 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
waleee has quit [Quit: WeeChat 2.4]
<therealwaphire[m> what package provides `typescript` on NixOS?
mabel has joined #nixos
linarcx has joined #nixos
a777826537 has quit [Ping timeout: 246 seconds]
lovesegfault has quit [Quit: WeeChat 2.4]
lovesegfault has joined #nixos
<vcunat> therealwaphire[m: I see nodePackages.typescript - so maybe that's what you want?
silver_hook has joined #nixos
linarcx has quit [Client Quit]
<therealwaphire[m> yup, thanks
steve-chavez has joined #nixos
linarcx has joined #nixos
<steve-chavez> Had some issues with using services.postgresql, postgres 11. Solution was to do `initdb` manually, this was failing silently due to a LOCALE error.
Lisanna has quit [Remote host closed the connection]
Lisanna has joined #nixos
linarcx has quit [Client Quit]
Thra11 has joined #nixos
linarcx has joined #nixos
sam has joined #nixos
<Lisanna> Hey, I need some help understanding networking.nat port forwarding. The descriptions of the options are written as if I want to forward connections from internal interfaces to external, but I want to go the other way around: I want TCP connections coming in on e.g. port 8022 from the LAN to be sent to a local virtual machine on an internal interface on port 22. Can networking.nat be used for this? I can't seem to get it to work.
sam is now known as Guest51817
<gchristensen> yep
<cransom> that requires the lan network and your other interface to be on different networks though.
<Lisanna> Do I also need to explicitly fill out the internalIPs even if I specify the externalInterface and internalInterfaces?
_linarcx has joined #nixos
linarcx has quit [Ping timeout: 246 seconds]
Guest51817 has quit [Remote host closed the connection]
rauno has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @vcunat pushed to staging-next « Revert "Merge #58997 gettext: apply patch for CVE 2018-1875" »: https://git.io/fjLr4
zupo has quit [Ping timeout: 250 seconds]
zupo has joined #nixos
mabel has quit [Ping timeout: 255 seconds]
<_linarcx> shazow: It's work, but i have a simple problem. when i use: `startx` command, it open for me just x not i3, i create .xinitrc in home dir according to https://wiki.archlinux.org/index.php/Xinit#Switching_between_desktop_environments/window_managers. what do you do in this situation?
<cransom> yes. nat requires you to have an ip to forward traffic to.
<Lisanna> and I guess I'm also not sure in general what the difference between externalInterface and internalInterfaces is. Does internal only forward to external? i.e., should externalInterface = "vibr0" (VM interface) and internalInterfaces = [ "eth0" ] (LAN)?
<shazow> _linarcx: I have in my .xinitrc: exec dbus-launch --exit-with-x11 i3
<gchristensen> Lisanna: NAT pretends one set of networks is all behind one interface
<gchristensen> Lisanna: so externalInterface is the one where traffic is coming in from, and internalInterfaces is where you want to forward it to
<Lisanna> Okay
<_linarcx> shazow: Aha. i think we should provide such a thing in home-manager too.
<Lisanna> externalInterface = "eth0" and internalInterfaces = [ "vibr0" ]
<gchristensen> like for your example, (something on externalInterface):22 would be forwarding to (one of the IPs accessible through internalInterfaces):8022
<{^_^}> [nixpkgs] @vcunat pushed 10 commits to staging: https://git.io/fjLrz
<gchristensen> sounds likely,li:)
<shazow> _linarcx: yea not a terrible idea, I'm in the process of adding it to my home.nix actually
<Lisanna> OK
<_linarcx> shazow: Great :)
<vcunat> steve-chavez: we were changing glibc versions and they have incompatible locales. Are you sure you aren't mixing different versions on the same system? It's not a big deal normally, but NixOS normally provides just one locale, so if your app uses an incompatible glibc...
das_j has quit [Remote host closed the connection]
<steve-chavez> vcunat: I'm using 17.09. And I have different postgres versions. I also noted this was related to https://github.com/NixOS/nixpkgs/issues/38991.
<{^_^}> #38991 (by peti, 50 weeks ago, closed): glibc 2.27 breaks locale support
das_j has joined #nixos
<steve-chavez> Though I ran `initdb` with `--no-locale` and now I'm facing some other issues.
ddellacosta has quit [Ping timeout: 258 seconds]
o1lo01ol_ has quit [Remote host closed the connection]
ddellacosta has joined #nixos
dhkl has quit [Ping timeout: 245 seconds]
<carter> question: whats a good example of a nix package that uses a maven based build?
<carter> gotta bundle up some java
<obadz> So I'd like my <nixpkgs> src files to be included in my system env (when I nixos-rebuild) so that my users which don't have access to my local checkout if nixpkgs can install packages with nix-env -iA with minimal rebuild. What's the best way to achieve that?
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #58277 → evince: enable all backends → https://git.io/fjUkl
<{^_^}> [nixpkgs] @worldofpeace pushed 3 commits to staging: https://git.io/fjLrF
<carter> anyone? :)
<carter> or whats a good place to ask
<carter> vcunat: :)
<carter> thx
<carter> need to deal with something that uses maven
<carter> and the examples i can find look more confusing :)
<vcunat> There's not that much java around nixpkgs so far.
<manveru> god i hate packaging python... every single package has a different issue :(
<carter> python sounds terrible, you dont get any notion of static or dynamic linking
<carter> except everything is sortah copying based?
<carter> so each python thing needs a different copy of everything?
<carter> or is it different?
<manveru> it... depends
<manveru> on lots of things :P
<carter> i was recently looking at some rust code and thinking
<clever> obadz: one sec
* carter smokes a metaphorical cigar
<carter> "this would be simpler in C"
<obadz> clever: looking, thanks
<manveru> C is simpler for sure, but that's not the point of rust :)
<manveru> i'm mostly complaining about the fact that there's like 4 million different ways people handle dependencies in their python projects
<manveru> and yet somehow python shows up at any level of the software stack... just recently saw a boot loader in python
<gchristensen> nooo
mabel has joined #nixos
<obadz> gchristensen: don't pretend, you love python.
<manveru> anw, anyone here into tahoe-lafs?
<gchristensen> manveru: simpson is decidedly in to tahoe lafs
<simpson> I mean, I run a grid. I'm not sure if that counts as enthusiasm.
<manveru> gotta find a way to build their master branch
averell has quit [Quit: .]
<manveru> somehow they use `pip install` without a requirements.txt, not sure how to deal with it correctly
<therealwaphire[m> guys, I'm trying to package a .deb java application to Nix
<simpson> manveru: Gotta read setup.py. Also just noticed that you're in the right channel.
<therealwaphire[m> but I'm stuck
<manveru> simpson: :)
<manveru> simpson: so can i feed that to pypi2nix or something?
<simpson> manveru: Probably not. Gotta do it by hand.
<manveru> i was afraid you'd say that :(
<simpson> Why? How do you think exarkun and I do it?
<manveru> i have no idea
<manveru> how can you keep up with this stuff with no automation?
<manveru> like half of the python-packages seem to be made manually :|
johnw has quit [Remote host closed the connection]
<simpson> What do you want from me? All software is shit.
stepcut has joined #nixos
<NemesisD> does anyone know why a derivation made with buildFHSUserEnv would have a correctly-configured environment (correct $PATH, etc) when you drop into the shell but not if you run it with -c "some script"?
<NemesisD> does `profile` only get used on interactive sessions?
<manveru> simpson: you just made me feel better :)
<simpson> manveru: Oh. Sorry I can't be more helpful.
steve-chavez has quit [Ping timeout: 256 seconds]
stepcut has quit [Remote host closed the connection]
freeman42x has quit [Read error: Connection reset by peer]
<{^_^}> Channel nixos-18.09 advanced to https://github.com/NixOS/nixpkgs/commit/222950952f1 (from 12 hours ago, history: https://channels.nix.gsc.io/nixos-18.09)
freeman42x has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #58970 → curseradio: init at 0.2 → https://git.io/fjLqu
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/fjLoU
<obadz> clever: works nicely but copies the .git. I think there was a function to avoid that?
rcshm has quit [Ping timeout: 245 seconds]
mabel has quit [Ping timeout: 264 seconds]
<clever> obadz: builtins.filterSource, and lib.cleanSource is a wrapper around it
<{^_^}> [nixpkgs] @dtzWill closed pull request #58714 → libu2f-host: 1.1.7 -> 1.1.9 → https://git.io/fjIJZ
<{^_^}> [nixpkgs] @dtzWill closed pull request #58693 → harfbuzz: 2.3.1 -> 2.4.0 → https://git.io/fjkpU
cfricke has joined #nixos
<{^_^}> [nixpkgs] @dtzWill closed pull request #58749 → physfs: 3.0.1 -> 3.0.2 → https://git.io/fjImk
mabel has joined #nixos
goibhniu2 has quit [Ping timeout: 264 seconds]
leotaku has quit [Ping timeout: 245 seconds]
cfricke has quit [Client Quit]
infinee has quit [Read error: Connection reset by peer]
npmccallum has quit [Ping timeout: 258 seconds]
a777826537 has joined #nixos
knupfer has joined #nixos
<eyJhb> worldofpeace++
<{^_^}> worldofpeace's karma got increased to 12
goibhniu1 has joined #nixos
mconstant has quit [Ping timeout: 250 seconds]
averell has joined #nixos
vcunat has quit [Quit: Leaving.]
sumTimes has quit [Quit: Page closed]
<{^_^}> [nixpkgs] @dtzWill closed pull request #58897 → gnutar: 1.31 -> 1.32 → https://git.io/fjIwL
<gchristensen> the nixos tests are such cool use case demonstrations
<{^_^}> [nixpkgs] @dywedir merged pull request #59017 → podman: 1.1.2 -> 1.2.0 → https://git.io/fjLgn
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/fjLol
<worldofpeace> eyJhb: thanks :)
<eyJhb> worldofpeace: np ;)
zupo has quit [Ping timeout: 245 seconds]
zupo has joined #nixos
erasmus has joined #nixos
marnix has joined #nixos
silver_hook has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @dtzWill opened pull request #59029 → unrar: 5.7.3 -> 5.7.4 → https://git.io/fjLKu
silver_hook has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #59030 → papirus-icon-theme: 20190302 -> 20190331 → https://git.io/fjLKz
<{^_^}> [nixpkgs] @worldofpeace merged pull request #58826 → python37Packages.pylast: 3.0.0 -> 3.1.0 → https://git.io/fjI4A
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/fjLKr
orivej has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #59031 → jemalloc: 5.1.0 -> 5.2.0 → https://git.io/fjLK6
_linarcx has quit [Quit: WeeChat 2.4]
linarcx has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #59032 → goxel: 0.8.2 -> 0.8.3 → https://git.io/fjLKi
civodul has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #59033 → broot: 0.7.4 -> 0.7.5 → https://git.io/fjLKM
slack1256 has joined #nixos
<obadz> clever: thanks
drakonis has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @dtzWill opened pull request #59034 → lxd: 3.11 -> 3.12 → https://git.io/fjLKS
<{^_^}> [nixpkgs] @dtzWill opened pull request #59035 → libpqxx: 6.4.2 -> 6.4.3 → https://git.io/fjLK9
knupfer has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @dtzWill opened pull request #59036 → wget: 1.20.1 -> 1.20.3 (SECURITY) → https://git.io/fjLKQ
<{^_^}> [nixpkgs] @dtzWill opened pull request #59037 → zsh-autosuggestions: 0.5.0 -> 0.5.1 → https://git.io/fjLKd
a777826537 has quit [Remote host closed the connection]
<gchristensen> dang dtz
<clever> gchristensen: and now a good reason to turn on dedup!
<clever> gchristensen: i'm testing a derivation, that involves copying ~30gig to $out
<gchristensen> O.o
<gchristensen> noope don't like that! :)
<ryantm> dtz: is in competition with r-ryantm :)
<clever> gchristensen: how else would you solve it? lol
<MichaelRaskin> Split?
goibhniu1 has quit [Ping timeout: 268 seconds]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
goibhniu1 has joined #nixos
jabranham has quit [Quit: ERC (IRC client for Emacs 27.0.50)]
mekeor has joined #nixos
<gchristensen> nixos test framework is so good
stepcut_ has joined #nixos
stepcut has quit [Read error: Connection reset by peer]
<hyper_ch> only really brave people turn on dedup
<MichaelRaskin> at least as an _OS_ test framework…
<gchristensen> yes :)
<MichaelRaskin> (when used as a GUI application test framework, NixOS test framework consists of overhead and practically nothing else)
iceypoi has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @romildo opened pull request #59038 → deepin.dde-network-utils: init at 0.1.2 → https://git.io/fjL6T
<{^_^}> [nixpkgs] @benley merged pull request #58980 → tilingnome: init at 2019-01-18 → https://git.io/fjLOU
<{^_^}> [nixpkgs] @benley pushed to master « tilingnome: init at 2019-01-18 (#58980) »: https://git.io/fjL6I
<clever> hyper_ch: i have 32gig of ram, and can easily GC the files in question
slack1256 has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @dtzWill merged pull request #58520 → inter,inter-ui: keep font name the same for attributes, split off → https://git.io/fjTPb
<{^_^}> [nixpkgs] @dtzWill pushed 5 commits to master: https://git.io/fjL6O
Neo-- has joined #nixos
leotaku has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mabel has quit [Ping timeout: 246 seconds]
leotaku has quit [Client Quit]
leotaku has joined #nixos
dbmikus has quit [Ping timeout: 255 seconds]
<immae> Hello there! I would like to install a dns server on my nix machine, but I would like to configure the zones in a declarative way. I know it’s theoretically (?) impossible since there is a strictly monotoneous sequence that is part of the zone definition, but I wonder what the options are to do something about it. Do you have any hint about this?
mabel has joined #nixos
<clever> immae: https://github.com/cleverca22/nix-tests/tree/master/ip-magic is some code i started writting to handle that
meck has quit [Quit: WeeChat 2.4]
goibhniu1 has quit [Ping timeout: 246 seconds]
meck has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #59039 → electron: 4.1.3 -> 4.1.4 → https://git.io/fjL6l
goibhniu1 has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #59040 → qownnotes: 19.3.4 -> 19.4.1 → https://git.io/fjL68
<immae> clever: I’ll have a look, thanks for your share
<{^_^}> [nixpkgs] @matthewbauer opened pull request #59041 → Meson: don't set CC and CXX → https://git.io/fjL6R
iceypoi has joined #nixos
goibhniu1 has quit [Ping timeout: 250 seconds]
zupo has joined #nixos
<immae> clever: I don’t understand how you make sure that the "1" in "@ IN SOA ns.localnet. hostmaster (1 8H 2H 4W 1D)" will be a strictly increasing sequence each time the zones change? (It is mandatory when you want to have secondary servers). Or is it the part you didn’t finish?
obadz has quit [Quit: WeeChat 2.4]
drakonis has joined #nixos
marnix has quit [Ping timeout: 256 seconds]
zupo has quit [Ping timeout: 255 seconds]
zupo has joined #nixos
stepcut_ has quit [Remote host closed the connection]
<clever> immae: never planned for secondary servers when i wrote it
<clever> > builtins.currentTime
<{^_^}> 1554499732
stepcut has joined #nixos
<clever> immae: you could use this, but then it will never be the same build twice, and every nixos-rebuild/nixops deploy, will have something changed, and will have to restart bind after copying things
<clever> and it will constantly re-sync the zone file, even if nothing has changed
<simpson> Mildly disappointed that that doesn't evaluate constantly to `1`.
<immae> clever: yes, that’s the problem I have
<clever> simpson: if you enable pure eval, the attr wont even exist
<immae> I want to update the zones only when it actually changed of course
<{^_^}> [nixpkgs] @gnidorah closed pull request #59027 → munt: init at 2.3.0 → https://git.io/fjLrv
<simpson> clever: Excellent. Timers are unsafe and should be treated as closely-held capabilities rather than ambient builtins.
<clever> immae: you could also just make it an input, and manually increment it when you change the declarative part
<clever> immae: the only other option, is to handle that kind of thing at runtime
<immae> you mean during activationScript?
<clever> immae: write a bash script that will diff the nix version of the file, against the "current" one, and if they differ, increment and sed it
<clever> immae: just use a prestart on the bind service
<clever> immae: activation scripts are overkill for this, and can brick the machine if you mess up
<immae> ok
<immae> I’ll think of this a bit more, thanks for your hints
knupfer has joined #nixos
<clever> immae: you could also just not have secondary servers, make everything primary, and deploy them all with nixops
stepcut has quit [Ping timeout: 246 seconds]
goibhniu1 has joined #nixos
<clever> then nix is the real primary, and bind just thinks its in control!
<immae> No, I only control one server, the other ones are out of my control and I prefer it that way :)
<clever> ah
polman has quit [Ping timeout: 246 seconds]
<immae> If I end up with more than one server I will definitly consider it, but for now secondary are externalized
polman has joined #nixos
uranther has joined #nixos
<gchristensen> has anyone used the nixos test framework with multiple IP address groups? for example, 192.168, plus 172.16, plus 10.?
<clever> gchristensen: on the same subnet, or with a router?, the bittorrent.nix test uses a router
<immae> clever: out of curiosity, how can the activation script brick the machines? I didn’t see any "critical" step in there apart from at the beginning, so even baddly written scripts will run after important tasks
<gchristensen> same subnet
<clever> immae: the activation script is sourced, under `set -e` so if anything returns non-zero status, the parent script aborts
<clever> immae: then systemd isnt put into PATH, and stage-2 fails to find systemd!!
<immae> ah
<clever> i discovered that when helping somebody that tried to do network in his activation script
<clever> and because he rarely reboot, it worked fine for months, and he GC'd the working versions
dbmikus has joined #nixos
<immae> I see
<immae> I didn’t know that activation script was run at boot
<gchristensen> clever: https://gist.github.com/grahamc/0d38bb4868b3d46229d3df020c024b78 mind taking a look-see?
<shazow> linarcx: my relevant configs are here now: https://github.com/shazow/nixfiles/blob/master/nixpkgs/startx.nix
mekeor has quit [Ping timeout: 268 seconds]
<clever> gchristensen: if you just set a prefix length of 0, i think it will consider EVERYTHING as being on the "local" network
<immae> clever: do you know where is the parent script that calls activation script?
<clever> gchristensen: and then it will just fire out an ARP for any ip
<linarcx> shazow: Awesome :)
<gchristensen> hmmm
<gchristensen> clever: is that at fault here?
<immae> Thanks
<clever> gchristensen: if the prefix you configured doesnt match, then it will want to ARP the gateway instead, and route the packets via that, but you havent configured one
linarcx has quit [Quit: WeeChat 2.4]
<gchristensen> clever: yeah, but check it out -- all the prefixes are identical and should be within range
<clever> gchristensen: hmmm, external has a prefix of 24 and is using a pair of 1.1.1.x IP's, will external only ever talk to other external machines?
<clever> gchristensen: ah, let me grab something that can help
<immae> clever: ok, cool. And nixops calls the perl script right? This one seems robust to error, isn’t it?
meck has quit [Quit: WeeChat 2.4]
<clever> immae: yeah, nixops also calls that perl script
<gchristensen> clever: yeah, `host` has an `internal-*` and an `external` IP
<clever> gchristensen: this causes qemu to create pcap files for all traffic
<gchristensen> oh hot dog
<immae> ok
<{^_^}> [nixpkgs] @dywedir merged pull request #59033 → broot: 0.7.4 -> 0.7.5 → https://git.io/fjLKM
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/fjL69
<clever> gchristensen: and lines 102-112, created a hydra-build-products file
<clever> gchristensen: so the pcap files are available for download on hydra in the event of failure!
<nand0p> https://github.com/NixOS/nixpkgs/pull/55422 hi infinisil, any word on this? i think i addressed all the comments. thanks.
<{^_^}> #55422 (by nand0p, 8 weeks ago, open): ethminer: init at 0.18.0-rc.0
erasmus is now known as razmoose
* infinisil takes a look
drakonis_ has joined #nixos
<{^_^}> [nixpkgs] @matthewbauer opened pull request #59043 → fuse: use /etc/fuse.conf for configuration → https://git.io/fjL6j
<immae> ah you were quicker than me to find it :D
<gchristensen> clever: I was thinking vlans were necessary, but now I'm not so sure.
<clever> gchristensen: vlans arent needed, they just help isolate things so you cant hear the other nets packets
<immae> Thanks clever, I learned something tonight, I’ll be more careful with my scripts now :)
buckley310 has quit [Quit: Connection closed for inactivity]
<immae> clever++
<{^_^}> clever's karma got increased to 123
<infinisil> nand0p: I have some more things I just noticed, I hope you don't mind
<nand0p> no thats fine thanks for reviewing.
drakonis has quit [Quit: WeeChat 2.3]
<clever> gchristensen: oh, virtualisation.vlans is more extreme then normal vlans, that will isolate things even further
justanotheruser has joined #nixos
<gchristensen> hmm looks like vlanid -> eth${vlanid}
<clever> *looks*
<immae> clever: unless I miss something in https://github.com/NixOS/nixpkgs/blob/4c5b6d6e53556bb98e243e3c8bbda419a9863a96/nixos/modules/system/boot/stage-2-init.sh#L131 the init script is not run with -e and activationScript is not sourced, so it should still continue even in case of error? Maybe it changed since your friend's issue?
Ariakenom_ has joined #nixos
<clever> gchristensen: and its also trying to auto-assign IP's to them for you
silver_ has joined #nixos
<gchristensen> grr
<clever> immae: one min
drakonis has joined #nixos
stepcut has joined #nixos
spacekookie_ has joined #nixos
<clever> immae: `cat /run/current-system/activate`, near the end, it updates /run/current-system
stepcut has quit [Remote host closed the connection]
jasongro` has joined #nixos
iceypoi has quit [Quit: Lost terminal]
<clever> immae: and near the top, it sets a trap for errors
eyjhb_ has joined #nixos
dhess_ has joined #nixos
nD5Xjz_ has joined #nixos
tdeo_ has joined #nixos
Piece_Maker has joined #nixos
bgamari_ has joined #nixos
wolke has joined #nixos
tylerjl has joined #nixos
qyliss^work_ has joined #nixos
buffet_ has joined #nixos
Neo-- has quit [Disconnected by services]
Neo--- has joined #nixos
dustinm- has joined #nixos
Glider_IRC__ has joined #nixos
<immae> ok I see
irdr_ has joined #nixos
ekleog_ has joined #nixos
__monty__ has quit [Quit: leaving]
<clever> so if any fragment of the activation script fails, the entire activation script stops, and then /run/current-system isnt created
shad_ has joined #nixos
<clever> and stage-2 cant find systemd
drakonis_ has quit [Ping timeout: 264 seconds]
orivej_ has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
Izorkin_ has joined #nixos
goodwill_ has joined #nixos
dontdiey- has joined #nixos
cruxeter has joined #nixos
<immae> ok understood
Aleksejs_Home has joined #nixos
o1lo01ol1o has joined #nixos
rixed_ has joined #nixos
DerGuteM1ritz has joined #nixos
jtojnar_ has joined #nixos
mjrosenb_ has joined #nixos
MinceR_ has joined #nixos
georges_ has joined #nixos
evhan` has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 26.1)]
niksnut_ has joined #nixos
aszlig_ has joined #nixos
shachaf_ has joined #nixos
shachaf_ has joined #nixos
shachaf_ has quit [Changing host]
Unode_ has joined #nixos
irdr has quit [Ping timeout: 255 seconds]
dustinm has quit [Ping timeout: 255 seconds]
bgamari has quit [Ping timeout: 255 seconds]
cruxeternus has quit [Ping timeout: 255 seconds]
swerlk has quit [Ping timeout: 255 seconds]
erasmas has quit [Ping timeout: 255 seconds]
alex`` has quit [Ping timeout: 255 seconds]
romanofski has quit [Ping timeout: 255 seconds]
DerGuteMoritz has quit [Ping timeout: 255 seconds]
tv has quit [Ping timeout: 255 seconds]
exarkun- has quit [Ping timeout: 255 seconds]
rixed has quit [Ping timeout: 255 seconds]
petar has quit [Ping timeout: 255 seconds]
Aleksejs has quit [Ping timeout: 255 seconds]
jasongrossman has quit [Ping timeout: 255 seconds]
cyphase has quit [Ping timeout: 255 seconds]
Ariakenom has quit [Ping timeout: 255 seconds]
jtojnar has quit [Ping timeout: 255 seconds]
lord| has quit [Ping timeout: 255 seconds]
liori has quit [Ping timeout: 255 seconds]
jmgai_ has quit [Ping timeout: 255 seconds]
jluttine has quit [Ping timeout: 255 seconds]
eyJhb has quit [Ping timeout: 255 seconds]
ekleog has quit [Ping timeout: 255 seconds]
niksnut has quit [Ping timeout: 255 seconds]
mjrosenb has quit [Ping timeout: 255 seconds]
qyliss^work has quit [Ping timeout: 255 seconds]
shad has quit [Ping timeout: 255 seconds]
nurelin_ has quit [Ping timeout: 255 seconds]
neonfuz has quit [Ping timeout: 255 seconds]
monokrome has quit [Ping timeout: 255 seconds]
wolke23 has quit [Ping timeout: 255 seconds]
shachaf has quit [Ping timeout: 255 seconds]
leothrix has quit [Ping timeout: 255 seconds]
Mister_Magister has quit [Ping timeout: 255 seconds]
otulp_ has joined #nixos
palo1 has joined #nixos
jmgai has joined #nixos
erasmas_ has joined #nixos
cyphase_eviltwin has joined #nixos
qyliss^work_ is now known as qyliss^work
tdeo has quit [Ping timeout: 246 seconds]
MinceR has quit [Ping timeout: 246 seconds]
goodwill has quit [Ping timeout: 246 seconds]
Unode has quit [Ping timeout: 246 seconds]
Church- has quit [Ping timeout: 246 seconds]
buffet has quit [Ping timeout: 246 seconds]
evhan has quit [Ping timeout: 246 seconds]
georges has quit [Ping timeout: 246 seconds]
Anton-Latukha has quit [Ping timeout: 246 seconds]
nD5Xjz has quit [Ping timeout: 246 seconds]
dhess has quit [Ping timeout: 246 seconds]
hark has quit [Ping timeout: 246 seconds]
Acou_Bass has quit [Ping timeout: 246 seconds]
disasm has quit [Ping timeout: 246 seconds]
silver has quit [Ping timeout: 246 seconds]
aszlig has quit [Ping timeout: 246 seconds]
Izorkin has quit [Ping timeout: 246 seconds]
dontdieych has quit [Ping timeout: 246 seconds]
copumpkin has quit [Ping timeout: 246 seconds]
Glider_IRC_ has quit [Ping timeout: 246 seconds]
orivej has quit [Ping timeout: 246 seconds]
palo has quit [Ping timeout: 246 seconds]
spacekookie has quit [Ping timeout: 246 seconds]
otulp has quit [Ping timeout: 246 seconds]
romanofs1i has joined #nixos
neonfuz1 has joined #nixos
hark has joined #nixos
alex``` has joined #nixos
swerlk_ has joined #nixos
disasm has joined #nixos
liori_ has joined #nixos
Church- has joined #nixos
palo1 is now known as palo
goodwill_ is now known as goodwill
otulp_ is now known as otulp
Piece_Maker is now known as Acou_Bass
Unode_ is now known as Unode
Izorkin_ is now known as Izorkin
lor|d has joined #nixos
exarkun- has joined #nixos
liori_ has joined #nixos
liori_ has quit [Changing host]
<clever> hmmm, that wasnt us getting matrixed
sam has joined #nixos
<clever> maybe a weird net split?
palo is now known as Guest71014
MinceR_ is now known as MinceR
Mister_Magister has joined #nixos
nurelin_ has joined #nixos
sam is now known as Guest41578
Aleksejs_Home is now known as Aleksejs
tv has joined #nixos
jluttine has joined #nixos
shachaf_ is now known as shachaf
Anton-Latukha has joined #nixos
copumpkin has joined #nixos
dsiypl4_ has joined #nixos
dsiypl4 has quit [Remote host closed the connection]
Glider_IRC__ has quit [Remote host closed the connection]
jtojnar_ is now known as jtojnar
Glider_IRC__ has joined #nixos
meck has joined #nixos
<gchristensen> clever: woohoo, I got it
_monokrome has joined #nixos
o1lo01ol1o has quit [Ping timeout: 244 seconds]
<clever> gchristensen: i can also see why my pcap trick wouldnt be accepted as a blanket change to nixos tests, https://r13y.com/
<gchristensen> for virtualisations.vlans = [ vlanA vlanB vlanC ]; that eth1 had IPs for vlanA ,and eth2 had IPs for vlanB, etc.
<clever> although, tests already contain logs with timestamps...
<gchristensen> eth0 <-> vlanA, eth1 <-> vlanB broke it
petar has joined #nixos
<clever> gchristensen: ahh, off by one!
kgz has quit [Ping timeout: 246 seconds]
iceypoi has joined #nixos
<gchristensen> that dastardly zip! :)
<infinisil> nand0p: Did another review round, feel free to ping me here when addressed
rcshm has joined #nixos
<iceypoi> samueldr: the grub changes we were discussing yesterday seem to work well
<samueldr> nice
<clever> gchristensen: more the lib.range then the zip i think
<gchristensen> aye
<samueldr> I was expecting it to work fine since that was already done for the other option (gfxmode?)
<iceypoi> ya
<iceypoi> turns out EFI doesn't support text
<iceypoi> hence the GRUB default keep
<ajs124> Does anyone here know if there is a declarative nix config for (power)DNS zones?
razmoose is now known as ErAsMuS
cyphase_eviltwin is now known as cyphase
aszlig_ is now known as aszlig
kgz has joined #nixos
<infinisil> ajs124: spacefrogg did something regarding that in #50891
<{^_^}> https://github.com/NixOS/nixpkgs/pull/50891 (by spacefrogg, 19 weeks ago, open): services.tinydns: Extend module with typed DNS records
<ajs124> I'm asking because I'm about to start implementing one, but if one (or more) already exist(s), I'd obviously take a look at that first.
<infinisil> I'm not a big fan of above implementation (in the PR) tbh
<{^_^}> [nixpkgs] @matthewbauer closed pull request #59041 → Meson: don't set CC and CXX → https://git.io/fjL6R
stepcut has joined #nixos
<ajs124> infinisil, why not?
lor|d is now known as lord|
spacekookie_ is now known as spacekookie
fendor has joined #nixos
<infinisil> I haven't looked at the latest changes though, maybe it's different now
<infinisil> Not entirely sure about my proposal there either
schneid3306 has quit [Quit: ZZZzzz…]
mabel has quit [Ping timeout: 245 seconds]
<ajs124> I guess I can draw some inspiration from it, but I think my implementation might end up talking to the powerdns http api.
<ajs124> Which won't be pretty, but I'm not sure if I'm aiming for nixpkgs with this anyways.
<AluisioASG> hi, does anyone experience Plasma widget settings opening a blank window?
knupfer has quit [Ping timeout: 250 seconds]
iceypoi has quit [Remote host closed the connection]
Makaveli7 has quit [Quit: Makaveli7]
aszlig has quit [Quit: Reconnecting]
aszlig_ has joined #nixos
aszlig_ is now known as aszlig
<ajs124> AluisioASG‎: yes, but I don't have a solution for it.
<AluisioASG> ajs124: do you know if there's an issue on GitHub I can subscribe to?
stepcut has quit [Remote host closed the connection]
ng0 has quit [Quit: Alexa, when is the end of world?]
<ajs124> Nope, it always goes away for me after I restart my session.
stepcut has joined #nixos
rcshm has quit []
schneid3306 has joined #nixos
aszlig has quit [Quit: Reconnecting]
aszlig has joined #nixos
<AluisioASG> ah ok
stepcut has quit [Ping timeout: 252 seconds]
erasmas_ has quit [Quit: leaving]
Guest41578 has quit [Remote host closed the connection]
dsiypl4__ has joined #nixos
fendor has quit [Read error: Connection reset by peer]
dsiypl4_ has quit [Ping timeout: 246 seconds]
ErAsMuS is now known as Erasmus
DerGuteM1ritz has quit [Quit: leaving]
DerGuteMoritz has joined #nixos
DerGuteMoritz has joined #nixos
silver_ is now known as silver
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mabel has joined #nixos
stepcut has joined #nixos
das_j has quit [Remote host closed the connection]
everybodyHertz has quit [Ping timeout: 256 seconds]
stepcut has quit [Ping timeout: 258 seconds]
das_j has joined #nixos
Erasmus has quit [Quit: fooood]
<{^_^}> [nixpkgs] @veprbl merged pull request #58939 → Add latexrun package → https://git.io/fjISk
<{^_^}> [nixpkgs] @veprbl pushed 2 commits to master: https://git.io/fjLPT
ashkitten has joined #nixos
<ashkitten> hey, how can i execute a command to set a cmake flag?
<NemesisD> approximately how stupid is it to use a recent commit of nixpkgs? i'm using the last release on github. 19.03-beta from february, but that doesn't have GHC 8.6.4
sam has joined #nixos
sam has quit [Remote host closed the connection]
nixuser has joined #nixos
<nixuser> hey there - is there a published IP range for cache.nixos.org for egress filtering purposes?
<nixuser> or list of ranges?
sam has joined #nixos
Rusty1 has joined #nixos
<gchristensen> nixuser: cache.nixos.org is all of Fastly
sam is now known as Guest6542
<nixuser> roger, thanks gchristensen
<samueldr> NemesisD: assume releases on github are meaningless
stepcut has joined #nixos
nixuser has quit [Client Quit]
<samueldr> they are tags of whenever the release was cut off from master, and whenever it was marked stable
<samueldr> further updates happen
Guest6542 has quit [Remote host closed the connection]
<samueldr> what might be better, NemesisD, is to use one of the branches from that special repo https://github.com/NixOS/nixpkgs-channels
<samueldr> those branches are updated in sync with channel updates, so should have as-good-as-channels coverage with build artifacts
<samueldr> (and more importantly: have gone through tests)
<NemesisD> samueldr: so like `19.03-small`? that seems to be the most recent besides unstable. although does unstable get tested?
ddellacosta has quit [Ping timeout: 245 seconds]
orivej_ has quit [Ping timeout: 245 seconds]
rcshm has joined #nixos
slack1256 has joined #nixos
Anton-Latukha has quit [Quit: Leaving.]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/b58387e9132 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<samueldr> NemesisD: different test coverage, and won't wait on everything to be built before advancing
<NemesisD> oh wait nevermind there's others i missed. i think i want `release-19.03` or something
<clever> ,escape"
<{^_^}> " double quote: \" backslash: \\ bash curly bois: \${} newline: \n tab: \t "
<samueldr> release-19.03 is the "master for current stable", where updates are being committed
<samueldr> should be pretty stable, but might have spotty coverage, and hasn't been tested (as in, passed through tests on hydra)
npmccallum has joined #nixos
<NemesisD> samueldr: oof. one of my dependencies is marked as broken and won't evaluate on ghc864
erictapen has quit [Ping timeout: 250 seconds]
<infinisil> NemesisD: Depending on the error it might be easy to fix
<NemesisD> yeah, i'm going to clone it and ovverride the package to point to my local copy. the package hasn't been uploaded since 2015
erictapen has joined #nixos
jasongro` has quit [Ping timeout: 245 seconds]
dsiypl4__ has quit [Ping timeout: 252 seconds]
stepcut has quit [Ping timeout: 252 seconds]
stepcut has joined #nixos
o1lo01ol1o has joined #nixos
lovesegfault has quit [Ping timeout: 240 seconds]
rcshm has quit []
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<NemesisD> infinisil: how are breakages usually tracked. i just took the package in question and built against a stack lts on ghc864 and it built fine (with a few extra-deps for packages not in the lts)
jluttine has quit [Ping timeout: 268 seconds]
erictapen has quit [Quit: leaving]
<ashkitten> iis there a way to run a shell command and return iits output in a nix derivation?
jluttine has joined #nixos
troydm has quit [Ping timeout: 245 seconds]
ekleog_ is now known as ekleog
troydm has joined #nixos
<clever> ashkitten: nearly all derivations are just chunks of bash script to be ran
<clever> so you can just use normal bash scripting in the phases
jasongrossman has joined #nixos
mabel has quit [Ping timeout: 240 seconds]
<ashkitten> clever: sorry uh i meant like, i need to use a shell command to generate something for the cmakeFlags array
thc202 has quit [Ping timeout: 268 seconds]
ddellacosta has joined #nixos
<clever> ashkitten: preConfigure = ''cmakeFlags="$cmakeFlags $(echo whatever)"'';
<clever> ashkitten: you can use a chunk of bash in preConfigure to mutate the cmakeFlags env var however you want
<ashkitten> ahh
<ashkitten> okay thank you
<clever> the cmake setup hook is even doing that, based on other env vars you can set
iyzsong has joined #nixos
fusion809 has quit [Remote host closed the connection]
mbrgm has quit [Ping timeout: 264 seconds]
mbrgm has joined #nixos
phreedom has joined #nixos
phreedom_ has quit [Ping timeout: 256 seconds]
rcshm has joined #nixos