worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || 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/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-info
grobi has quit [Quit: WeeChat 2.8]
kirc has quit [Quit: kirc]
acarrico has joined #nixos
butcher_ has quit [Read error: Connection reset by peer]
jabster28 has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed to gnome-3.38 « webkitgtk: 2.30.0 → 2.30.1 »: https://git.io/JTk69
orivej has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JTkPB
<iwq> software that I'm trying to package is running a bash script after `make install`, but it seems to be failing at /usr/bin/env with `bad interpreter: No such file or directory`, why is that? is /usr/bin/env not available inside the build environment?
kirc has joined #nixos
kirc has quit [Client Quit]
<hodapp> gah, running into the dreaded issue in which JACK "works" with PulseAudio but there is no sound from apps using it
<infinisil> iwq: Indeed it isn't
<infinisil> Run `patchShebangs` on the script before you run it
<hodapp> there is https://discourse.nixos.org/t/declarative-audio-config-how-to-start-and-maybe-use-jack/5458/2 but no real coherent answer on the change that actually made audio work...
zecnate has quit [Remote host closed the connection]
rajivr has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
stigo has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
xd1le has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
gokkun has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #100206 → jackett: 0.16.1057 -> 0.16.1670 → https://git.io/JTUHP
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JTkMc
<{^_^}> [nixpkgs] @marsam merged pull request #100260 → v2ray: 4.28.2 -> 4.31.0 and clean up → https://git.io/JTTjL
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JTkMz
<{^_^}> [nixpkgs] @marsam merged pull request #100262 → helmfile: 0.130.0 -> 0.130.1 → https://git.io/JTkJo
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JTkMi
jmeredith has quit [Quit: Connection closed for inactivity]
<iwq> infinisil: thanks
orivej has quit [Ping timeout: 265 seconds]
CMCDragonkai1 has joined #nixos
gueorgui_ has joined #nixos
<Unode> is there a cleaner way to write: mkIf setting_A ({this = "one";} // (if setting_B then { that = "two"; } else {}))?
orivej has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #100222 → pg_tileserv: init at 1.0.3 → https://git.io/JTTnV
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JTkyU
vonfry has joined #nixos
h0m1 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @pacien opened pull request #100286 → nixos/borgbackup: add backup job runtimeLimit option → https://git.io/JTkyz
CMCDragonkai1 has quit [Ping timeout: 240 seconds]
h0m1 has joined #nixos
shibboleth has quit [Quit: shibboleth]
<{^_^}> [nixpkgs] @marsam opened pull request #100287 → fluent-bit: 1.5.7 -> 1.6.0 → https://git.io/JTkSQ
lovesegfault has quit [Quit: WeeChat 2.9]
medvid_ has joined #nixos
justanotheruser has joined #nixos
jani1234 has joined #nixos
<justanotheruser> Is there a way I can rebuild *only* the bootloader?
lovesegfault has joined #nixos
jani1234 has quit [Ping timeout: 246 seconds]
tazjin has quit [Ping timeout: 272 seconds]
tazjin has joined #nixos
zecnate has joined #nixos
<zecnate> Does anyone else get horribly confused when reading https://nixos.org/manual/nixpkgs/stable/#ssec-stdenv-dependencies ?
<samueldr> zecnate: if it runs during the build, native[to the builder]BuildInputs; otherwise buildInputs
<zecnate> Also, I don't understand how "bare" derivation attributes map to the named dependency attributes, like `depsHostHost` or `nativeBuildInputs`. If my derivation says `perl = nixpkgs.perl;` as an attribute, what kind of dependency does that become?
<samueldr> that's what you need to get unless you deal into building a compiler
<zecnate> samueldr: Thanks. Maybe that section needs to say that as a simplistic heuristic right at the top.
<samueldr> probably :)
<samueldr> I think my interpretation might be _too_ simplified though
<zecnate> In my case: my runtime is a python file (not a python "package" or "module", and it has no dependencies). So what kind of dependency is the python interpreter?
<samueldr> but for the majority of what you're probably going to end up writing, it should hold
<zecnate> I would guess it's: propagated (since every downstream needs the interpreter), and it has to run on the target host…
<samueldr> python is a buildInput since it's used on the host that executes code from the derivation
<samueldr> that executes the output of the derivation**
<zecnate> The derivation of the python script is unaware/insensitive to build/target hosts.
<zecnate> Doesn't it need to be a propagated build input?
<samueldr> propagated makes it so that it's in the build inputs of whatever includes that derivation as an input
patagonicus1381 has joined #nixos
<samueldr> so if you put python into propagatedBuildInputs of derivation A; then make a derivation B using builtInputs = [ A ]; python will be put in there like you wrote buildInputs = [ A python ];
<samueldr> (not really, but simplified)
<zecnate> And that's exactly what I need right? B needs that python at runtime.
<samueldr> but python, being an input of A (not propagated) should be enough to make A know about python for runtime uses*
<samueldr> * (assuming the build properly handles it)
<samueldr> uh, not sure, I don't do python stuff, and the specific builders for the different ways python can be packaged probably would handle that for you really
<zecnate> Is this because after building A, nix scans hashbangs and sees a reference to the python interpreter derivation output, so automagically includes it?
<samueldr> that's one of the way it can be done, yes
jabster28 has quit [Quit: ZNC 1.8.2 - https://znc.in]
jabster28 has joined #nixos
<samueldr> the nativeBuildInputs vs. buildInputs really comes into play when you do cross-compilation
<samueldr> though for correctness it's always nice to use the proper type of nput
<samueldr> of input*
seanparsons has quit [Ping timeout: 244 seconds]
proofofkeags_ has quit [Ping timeout: 240 seconds]
proofofkeags has quit [Ping timeout: 240 seconds]
jabster28_ has joined #nixos
jabster28 has quit [Ping timeout: 240 seconds]
seanparsons has joined #nixos
Fare has joined #nixos
aw has joined #nixos
spacefrogg has joined #nixos
nek0 has joined #nixos
Henson has joined #nixos
proofofkeags has joined #nixos
proofofkeags_ has joined #nixos
jabster28_ has quit [Quit: ZNC 1.8.2 - https://znc.in]
jabster28 has joined #nixos
Henson has quit [Ping timeout: 240 seconds]
<{^_^}> [nixos-hardware] @Mic92 merged pull request #192 → Adding Lenovo Thinkpad E470 → https://git.io/JUg5E
<{^_^}> [nixos-hardware] @Mic92 pushed 6 commits to master: https://git.io/JTk77
acarrico has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #100287 → fluent-bit: 1.5.7 -> 1.6.0 → https://git.io/JTkSQ
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JTk5W
Taneb has joined #nixos
aswanson has joined #nixos
nicoo has joined #nixos
pingiun has joined #nixos
Henson has joined #nixos
Henson has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/]
proofofkeags_ has quit [Ping timeout: 256 seconds]
proofofkeags has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #100283 → pythonPackages.scrapy: 2.3.0 -> 2.4.0 → https://git.io/JTkKX
<{^_^}> [nixpkgs] @jonringer pushed commit from @marsam to master « pythonPackages.scrapy: 2.3.0 -> 2.4.0 »: https://git.io/JTkFG
sleepingisfun has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #98707 → certbot: 1.7.0 -> 1.9.0 → https://git.io/JUaTo
<{^_^}> [nixpkgs] @jonringer pushed commit from @TredwellGit to master « certbot: 1.7.0 -> 1.9.0 »: https://git.io/JTkF6
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
ericsagnes has quit [Ping timeout: 240 seconds]
orivej has quit [Ping timeout: 244 seconds]
kreyren has joined #nixos
jani1234 has joined #nixos
<aminechikhaoui> is there a fetchurl variant that takes an src + patches and returns a new patched src ?
ericsagnes has joined #nixos
<clever> aminechikhaoui: one minute
<clever> aminechikhaoui: line 16 copies the output of a fetcher (in this case, one more like fetchzip), and then 19 applies the patches on 14
<aminechikhaoui> clever nice, thanks
jani1234 has quit [Ping timeout: 272 seconds]
<{^_^}> Channel nixos-20.03 advanced to https://github.com/NixOS/nixpkgs/commit/eba1d0126b4 (from 3 days ago, history: https://channels.nix.gsc.io/nixos-20.03)
<{^_^}> [nixpkgs] @happysalada opened pull request #100289 → cargo-edit: fix Darwin build → https://git.io/JTkA1
xd1le has quit [Remote host closed the connection]
domogled has joined #nixos
gokkun has quit [Quit: Leaving]
justanotheruser has quit [Ping timeout: 244 seconds]
Chiliparrot has joined #nixos
aleph- has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #99586 → pythonPackages.wxPython: fix build on darwin → https://git.io/JUdrB
<{^_^}> [nixpkgs] @jonringer pushed commit from @risicle to master « pythonPackages.wxPython: fix build on darwin »: https://git.io/JTkpJ
ddellacosta has quit [Ping timeout: 265 seconds]
domogled1 has joined #nixos
Chiliparrot has quit [Ping timeout: 246 seconds]
vonfry has quit [Remote host closed the connection]
endformationage has quit [Quit: WeeChat 2.9]
domogled has quit [Ping timeout: 264 seconds]
domogled1 is now known as domogled
astylian__ has quit [Ping timeout: 240 seconds]
Rusty1 has quit [Quit: WeeChat 2.3]
aleph- has quit [Ping timeout: 264 seconds]
astylian has joined #nixos
<{^_^}> [nixpkgs] @happysalada closed pull request #97949 → sozu: 0.11.46 -> 0.11.50; fix Darwin build → https://git.io/JU8KB
aleph- has joined #nixos
<{^_^}> [nixpkgs] @happysalada opened pull request #100290 → sozu: 0.11.46 -> 0.11.50; fix Darwin build → https://git.io/JTkh0
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JTkh6
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
mallox has joined #nixos
justanotheruser has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @peterhoeg opened pull request #100291 → tellico: 3.3.0 -> 3.3.3 → https://git.io/JTkjk
palo1 has joined #nixos
palo has quit [Ping timeout: 264 seconds]
palo1 is now known as palo
n9nes- has joined #nixos
n9nes has quit [Ping timeout: 240 seconds]
sputny has joined #nixos
sputny has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @srid opened pull request #100292 → linux: 5.9-rc8 -> 5.9 → https://git.io/JTkjX
Fare has quit [Ping timeout: 240 seconds]
sputny has joined #nixos
<{^_^}> [nixpkgs] @srid closed pull request #100292 → linux: 5.9-rc8 -> 5.9 → https://git.io/JTkjX
domogled1 has joined #nixos
domogled has quit [Ping timeout: 240 seconds]
domogled1 is now known as domogled
sangoma has joined #nixos
Chiliparrot has joined #nixos
Guest77521 has left #nixos ["User left"]
aasg has joined #nixos
jabster28 has quit [Quit: ZNC 1.8.2 - https://znc.in]
jabster28 has joined #nixos
<zecnate> I can't seem to use `filterSource` to exclude `.git`. Currently I get this error:
<zecnate> The path name '.git' is invalid: it is illegal to start the name with a period. Path names are alphanumeric and can include the symbols +-._?= and must not begin with a period. Note: If '.git' is a source file and you cannot rename it on disk, builtins.path { name = ... } can be used to give it an alternative name.
<zecnate> But I want to _exclude_ that name, not include it. :-/
<clever> zecnate: what expr did you use?
<zecnate> It's ... way over complicated. :-)
<clever> zecnate: and did you try lib.cleanSource ?
<zecnate> I'll paste this…
cantaloupe has joined #nixos
<zecnate> Gonna go check out `lib.cleanSource`.
<clever> zecnate: lines 7-12 will create nix paths, which will then try to copy the entire .git into /nix/store
<clever> zecnate: and then your comparing the path to the original, and the path to the copy, which will never match
<zecnate> Thanks!
Chiliparrot has quit [Ping timeout: 244 seconds]
sangoma has quit [Ping timeout: 240 seconds]
<clever> zecnate: throwing a `toString` on line 7 might fix it, but there should be cleaner ways, check the src of cleanSource
<zecnate> So, unlike `lib.cleanSource` I want to filter out explicit paths, so not any file/directory anywhere named "nix" but literally the single nix directory in the repo root.
<clever> i do have a more complex filter handy...
<zecnate> I basically want to look at the "relative path" from `rawSrcDir` and compare against that.
<zecnate> Looking.
<clever> zecnate: this one is using a strict whitelist instead of blacklist, but it should still serve as a good example
aasgweb has joined #nixos
<zecnate> Yeah, thanks. The `sansPrefix` looks like exactly what I specified.
<zecnate> +1 to strict whitelists. ;-) I'm not there yet, though.
sangoma has joined #nixos
<clever> i tend to write my whitelist by following the errors
<clever> start with nothing, what fails? no Makefile/configure, add them, repeat
hmpffff has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
sangoma has joined #nixos
Chiliparrot has joined #nixos
ky0ko has joined #nixos
jani1234 has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
jani1234 has quit [Ping timeout: 265 seconds]
sangoma has joined #nixos
cYmen has joined #nixos
<zecnate> Good idea. I'll start with that approach.
<zecnate> Can I explicitly name the result of `filterSource`? I have multiple `filterSource` expressions selecting different files from the same repo root. The default name is based on the repo root.
<zecnate> -the store name, I mean.
Chiliparrot has quit [Ping timeout: 260 seconds]
jabster28 has quit [Quit: ZNC 1.8.2 - https://znc.in]
jabster28 has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
sangoma has joined #nixos
Chiliparrot has joined #nixos
aasgweb has left #nixos [#nixos]
<clever> zecnate: builtins.path { path = ./.; filter = ...; name = "anything"; }; is a variant of filterSource, that lets you rename
sangoma has quit [Read error: Connection reset by peer]
sangoma has joined #nixos
<zecnate> Thanks again!
st0ne has joined #nixos
st0ne has quit [Remote host closed the connection]
Chiliparrot has quit [Ping timeout: 240 seconds]
xwvvvvwx- has joined #nixos
xwvvvvwx- is now known as xwvvvvwx
tsujp has joined #nixos
sangoma has quit [Ping timeout: 256 seconds]
sangoma has joined #nixos
<{^_^}> [nixpkgs] @pniedzwiedzinski opened pull request #100294 → amfora: Add desktop file → https://git.io/JTIkx
hmpffff has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fendor has quit [Quit: Leaving]
ManiacOfMadness has joined #nixos
m4tsa_ has joined #nixos
jabster28 has quit [Ping timeout: 256 seconds]
eoli3n has joined #nixos
astylian has quit [Read error: Connection reset by peer]
domogled has quit [Ping timeout: 260 seconds]
m4ts has quit [Ping timeout: 258 seconds]
Chiliparrot has joined #nixos
lsix has joined #nixos
sputny1 has joined #nixos
saschagrunert has joined #nixos
sputny1 is now known as sputny
sputny has quit [Ping timeout: 260 seconds]
cole-h has quit [Quit: Goodbye]
switchy has joined #nixos
Chiliparrot has quit [Ping timeout: 272 seconds]
cole-h has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres closed pull request #95316 → grex: init at 1.1.0 → https://git.io/JJHGe
cole-h has quit [Ping timeout: 256 seconds]
civodul has joined #nixos
thc202 has joined #nixos
kgriffin has joined #nixos
hmpffff has joined #nixos
domogled has joined #nixos
medvid_ has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @vbgl merged pull request #99652 → coqPackages.paco: 4.0.0 → 4.0.2 → https://git.io/JUbih
<{^_^}> [nixpkgs] @vbgl pushed to master « coqPackages.paco: 4.0.0 → 4.0.2 »: https://git.io/JTIY9
medvid_ has joined #nixos
jani1234 has joined #nixos
wazdra has joined #nixos
knupfer has joined #nixos
alp has joined #nixos
n9nes has joined #nixos
n9nes- has quit [Ping timeout: 244 seconds]
shad has joined #nixos
bahamas has joined #nixos
bahamas has joined #nixos
bahamas has quit [Changing host]
griff_ has joined #nixos
n9nes has quit [Quit: ZNC 1.8.2 - https://znc.in]
vidbina has joined #nixos
n9nes has joined #nixos
ericsagnes has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @doronbehar merged pull request #100264 → foundationdb: fix build for current glibc version → https://git.io/JTkkB
<{^_^}> [nixpkgs] @doronbehar pushed 4 commits to master: https://git.io/JTI3h
Ariakenom has joined #nixos
zecnate has quit [Remote host closed the connection]
m0rphism has joined #nixos
<{^_^}> [nixpkgs] @doronbehar merged pull request #100239 → srht: 0.64.0 -> 0.65.2 → https://git.io/JTTKC
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsG
<{^_^}> [nixpkgs] @doronbehar merged pull request #100240 → buildsrht: 0.62.6 -> 0.63.4 → https://git.io/JTTKN
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsc
<{^_^}> [nixpkgs] @doronbehar merged pull request #100243 → hubsrht: 0.10.6 -> 0.11.5 → https://git.io/JTT6v
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsB
AsusEE has joined #nixos
<AsusEE> office
<{^_^}> [nixpkgs] @doronbehar merged pull request #100242 → hgsrht: 0.26.18 -> 0.26.19 → https://git.io/JTTKp
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsE
AsusEE has left #nixos ["Closing Window"]
<{^_^}> [nixpkgs] @doronbehar merged pull request #100246 → metasrht: 0.50.2 -> 0.51.2 → https://git.io/JTT6q
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsw
<{^_^}> [nixpkgs] @doronbehar merged pull request #100247 → pastesrht: 0.11.1 -> 0.11.2 → https://git.io/JTT6m
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsK
<{^_^}> [nixpkgs] @doronbehar merged pull request #100249 → scmsrht: 0.22.3 -> 0.22.4 → https://git.io/JTT6C
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsM
<{^_^}> [nixpkgs] @doronbehar merged pull request #100245 → mansrht: 0.15.1 -> 0.15.4 → https://git.io/JTT6t
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIs7
<{^_^}> [nixpkgs] @doronbehar merged pull request #100244 → listssrht: 0.45.9 -> 0.45.15 → https://git.io/JTT6k
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIsA
<{^_^}> [nixpkgs] @doronbehar merged pull request #100241 → gitsrht: 0.60.7 -> 0.61.10 → https://git.io/JTTKx
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIGe
<{^_^}> [nixpkgs] @doronbehar merged pull request #100248 → todosrht: 0.61.11 -> 0.62.1 → https://git.io/JTT6c
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTIGk
ericsagnes has joined #nixos
tabor has joined #nixos
tabor has quit [Remote host closed the connection]
<alexarice[m]1> Anyone have an idea about how I can take all changes but one from an overlay?
<alexarice[m]1> I want to get same packages from wayland overlay but want to test using a stable sway
Chiliparrot has joined #nixos
lunik1 has joined #nixos
<NobbZ[m]> Depending on how exactly the attributes in that overlay work, you might be able to override and pass stable away in to them
<alexarice[m]1> At the moment I'm trying to make another overlay that saves `sway` to `sway-stable` and the put another overlay afterwards which replaces the modified `sway` by the `sway-stable` I saved before
cfricke has joined #nixos
n9nes has quit [Quit: ZNC 1.8.2 - https://znc.in]
n9nes has joined #nixos
Chiliparrot has quit [Ping timeout: 240 seconds]
<lightandlight> I want to know the proportion of the (yet unreleased) nixos-20.09 branch on nixpkgs has been copied to cache.nixos.org. Is there a fast way to do that?
<clever> lightandlight: everything hydra builds is pushed to cache.nixos.org once the build finishes
<clever> so you can just pull up the hydra job for that branch, and look at how many jobs are pending vs complete
maxdevjs has quit [Ping timeout: 272 seconds]
cantaloupe has quit [Ping timeout: 240 seconds]
<{^_^}> [nix] @regnat opened pull request #4139 → Always keep the CA derivations around → https://git.io/JTInw
n9nes- has joined #nixos
n9nes has quit [Ping timeout: 256 seconds]
griff__ has joined #nixos
cfricke has quit [Quit: WeeChat 2.9]
graf_blutwurst has joined #nixos
jani1234 has quit [Ping timeout: 260 seconds]
griff_ has quit [Ping timeout: 240 seconds]
griff__ is now known as griff_
Chiliparrot has joined #nixos
<{^_^}> [nixpkgs] @tdroxler opened pull request #100295 → Add missing ChordPro → https://git.io/JTICE
sgrunert has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
saschagrunert has quit [Ping timeout: 260 seconds]
VulNix has joined #nixos
lafa has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
<{^_^}> [nixpkgs] @timokau merged pull request #94187 → ft2-clone: add a test → https://git.io/JJzzr
<{^_^}> [nixpkgs] @timokau pushed 3 commits to master: https://git.io/JTIWj
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
cosimone has joined #nixos
orivej has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
hnOsmium0001 has quit [Quit: Connection closed for inactivity]
knupfer has quit [Read error: Connection reset by peer]
cosimone has quit [Read error: Connection reset by peer]
cosimone has joined #nixos
<{^_^}> [nixpkgs] @timokau merged pull request #99924 → spotify-unwrapped: 1.1.26.501.gbe11e53b-15 -> 1.1.42.622.gbd112320-37 → https://git.io/JUxnr
<{^_^}> [nixpkgs] @timokau pushed commit from @samuela to master « spotify-unwrapped: 1.1.26.501.gbe11e53b-15 -> 1.1.42.622.gbd112320-37 (#99924) »: https://git.io/JTIlH
taylan has joined #nixos
sangoma has joined #nixos
supercoven has joined #nixos
sascha__ has joined #nixos
<taylan> hi all. at my workplace we're looking forward to setting up a kubernetes cluster. I love the principle behind Nix, but don't know how it fits into the picture. (only ever used Guix as my regular PC OS.) is there an advantage to using NixOS instead of e.g. Debian as the OS below kubernetes? or can Nix serve as a (better) alternative to
<taylan> kubernetes?..
<dminuoso> taylan: they are completely different mindsets.
<dminuoso> And address different problems
jakobrs has joined #nixos
<dminuoso> Kubernetes, at its core, is about automated deployment and automated scaling.
<dminuoso> Most shops that run k8s dont even use k8s because they need it, but because they think its fancy.
<dminuoso> It's made for "How do I deploy 5,000 services across tens of thousands of servers"
<dminuoso> The kind of problems Google runs into
sgrunert has quit [Ping timeout: 256 seconds]
<dminuoso> The tech you can sensibly compare here, is nixos vs docker
<dminuoso> Because they solve similar problems
wazdra has quit [Ping timeout: 245 seconds]
<dminuoso> docker, at its core, is a stack of tech to be able to talk about how to build up a server to provide some service with essentially a shell script, and obtain artifacts you can push around
<dminuoso> as first class values
<dminuoso> (sort of a more efficient version of vagrant)
sangoma has quit [Read error: Connection reset by peer]
<dminuoso> nixos is about declaratively describing your server in a fully deterministic way
supercoven has quit [Ping timeout: 272 seconds]
<dminuoso> You can however, build up something similar to k8s with nixos
<dminuoso> Notably you can use nix + terraform, if you combine that with a sensible cloud provider, you can build something similar but with high deterministic guarantees
<dminuoso> https://github.com/tweag/terraform-nixos is an example approach of that
<taylan> the more experienced colleague who was planning this approach said, if I understood correctly, that we would be using docker to deploy the individual "nodes" (or w/e they're called) in the k8s cluster. I wonder if Nix could instead take that task?
<dminuoso> docker is not about deploying, docker is about building oci images
<dminuoso> and all the infrastructure to run containers off of that
sigmundv has joined #nixos
<dminuoso> taylan: and no, nix is not suitable for that
<dminuoso> taylan: If we compare things side to side, it's roughly:
<dminuoso> nix <> Dockerfile
<dminuoso> nixos <> docker-compose
<dminuoso> nixops <> docker swarm
<dminuoso> (By that I dont mean they are equivalent, but the left and right side take somwhat comparable roles)
supercoven has joined #nixos
<taylan> I understand, I think. e.g. while nixos and docker-compose do similar things, nixos does it on a whole-OS basis whereas docker-compose does it on a container basis, is that correct?
<dminuoso> terraform+nix <> k8s
bahamas has quit [Ping timeout: 256 seconds]
<dminuoso> taylan: the comparisons are difficult and not so useful I think
<dminuoso> nix is a pure functional language to describe packages in a deterministic way
<dminuoso> Dockerfile is just a shell script to describe the filesystem of a server
<dminuoso> (The reason I dont make a direct comparison between Dockerfile and Nixos, is because it's implicitly understood that a container should always talk about a single service/process only)
<dminuoso> Nixos otoh extends nix to not just talk about packages, but the entirety of the linux. Filesystem, systemd services, kernel, grub, etc..
jakobrs has quit [Quit: WeeChat 2.9]
<dminuoso> A more useful analogy to nixos is probably a pure functional and whole meal version of Chef/Puppet
<dminuoso> (Or just Puppet, I guess)
<taylan> guix has this "guix container" command to start a container with a certain environment, which seems very analogous to Docker, I think? (never really used Docker.) does Nix not have a "nix container" command of sorts?
<taylan> (I thought Nix would be the way to go over Guix since it's more mature, but maybe there's a thing or two in Guix that's more suitable for our plan, I dunno)
<dminuoso> well, nixos can run docker containers if you want that
<dminuoso> But at that point, Im not sure how much value you're gonna get off nixos
<dminuoso> Ah I think I misread
<dminuoso> taylan: You can build docker images using nix
<dminuoso> That gives you the fully deterministic benefits of nix, while obtaining a deployable/runnable artifact from it
supercoven has quit [Read error: Connection reset by peer]
<dminuoso> So you describe a docker image with nix, rather than Dockerfile, and nixpkgs.dockerTools will take care building a guaranteed deterministic image off of that
<dminuoso> So this can be useful for your CI
mekster has left #nixos [#nixos]
<dminuoso> (And if you deploy/manage containers with k8s, this fits very well in)
<taylan> that sounds like a good idea
<dminuoso> another big benefit, is that you get a clean development environment to play with the contents on your dev machine without all the container nonsense
<dminuoso> and still have the guarantee that the container will be *the* *same*
<dminuoso> (because since nix is deterministic, you can trust that it generates the same exact environment into the container)
<dminuoso> Well. Not' 100%, but close to it
supercoven has joined #nixos
zupo_ has joined #nixos
sangoma has joined #nixos
vidbina has quit [Ping timeout: 256 seconds]
supercoven has quit [Max SendQ exceeded]
supercoven has joined #nixos
<{^_^}> [nixpkgs] @toastal opened pull request #100327 → JuliaMono font → https://git.io/JTI0Z
inkbottle has joined #nixos
zebrag has quit [Ping timeout: 260 seconds]
<miyu-saki> Using another package's src as src.
cosimone has quit [Quit: cosimone]
zebrag has joined #nixos
domogled has quit [Quit: domogled]
inkbottle has quit [Ping timeout: 260 seconds]
<etu> miyu-saki: Nah, that's totally fine. Especially in your configuration. In nixpkgs... maybe not :)
<miyu-saki> Thanks! I needed some sanity check lol. Also aaaa, hardcoded paths.
berberman_ is now known as berberman
lunik1 has quit [Ping timeout: 240 seconds]
cosimone has joined #nixos
spudly has joined #nixos
lunik1 has joined #nixos
mallox has quit [Ping timeout: 240 seconds]
rprije has quit [Ping timeout: 240 seconds]
<miyu-saki> Hm
<miyu-saki> What do I substituteInPlace /bin/sh with?
<miyu-saki> `stdenv.shell`?
<clever> > pkgs.runtimeShell
<miyu-saki> Seems so
<{^_^}> "/nix/store/2jysm3dfsgby5sw5jgj43qjrb5v79ms9-bash-4.4-p23/bin/bash"
<miyu-saki> Oh
<clever> this should always be a shell for the target
<miyu-saki> Hmmm
<clever> so when your cross-compiling, you get the right one
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<miyu-saki> Yeah, that makes sense.
<miyu-saki> Okayyy
<miyu-saki> How do I substituteInPlace it? I can't just string interpolate that, right?
<clever> is it in a #! line?
<miyu-saki> Ish? It's a systemd service. ExecStart=
<miyu-saki> So not a shebang
<clever> i would just use systemd.services.foo.script
<clever> and not try to patch the existing file
<{^_^}> [nixpkgs] @domenkozar merged pull request #99713 → smos: init at 0.1.0 → https://git.io/JUNDm
<{^_^}> [nixpkgs] @domenkozar pushed 3 commits to master: https://git.io/JTIuW
Sanchayan has joined #nixos
<miyu-saki> Yeah, makes sense. I guess I'll just make a direct translation of their service file instead. There's some bugs in their application, but their service files worked because it masked the bugs, that's why I wanted to take from upstream instead.
<miyu-saki> (I copied their service files, but made it more Nixy, so avoided environment variables and stuff)
<miyu-saki> (In favor of evaluation-time replacement)
vidbina has joined #nixos
griff__ has joined #nixos
gueorgui_ is now known as gueorgui
griff_ has quit [Ping timeout: 244 seconds]
griff__ is now known as griff_
alp has quit [Remote host closed the connection]
alp has joined #nixos
vidbina has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @ttuegel closed pull request #70691 → Abort Qt builds that do not use a supported deriver → https://git.io/JeWUD
MmeQuignon has joined #nixos
hmpffff has quit [Ping timeout: 260 seconds]
griff__ has joined #nixos
jani1234 has joined #nixos
griff_ has quit [Ping timeout: 256 seconds]
griff__ is now known as griff_
jani1234 has quit [Ping timeout: 272 seconds]
vidbina has joined #nixos
<{^_^}> [nixpkgs] @zowoq opened pull request #100329 → libcap: 2.27 -> 2.44 → https://git.io/JTIan
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/d74573d8ae6 (from 2 days ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
griff__ has joined #nixos
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
griff_ has quit [Ping timeout: 272 seconds]
griff__ is now known as griff_
zupo has joined #nixos
m1cr0man has joined #nixos
cosimone has quit [Quit: cosimone]
<eyJhb> How can I build `nix-manual-combined` ? https://hydra.nixos.org/build/128369475
meh` has joined #nixos
ninjin_ has quit [Ping timeout: 240 seconds]
<clever> eyJhb: first, go to the consituets tam, and find the job for just that
<clever> eyJhb: the `nixos.manual.x86_64-linux` in the job name, is the attribute path, within nixos/release.nix
<{^_^}> [nixpkgs] @marsam merged pull request #100130 → julia-mono: init at 0.018 → https://git.io/JTf5c
ninjin_ has joined #nixos
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JTIoi
<{^_^}> [nixpkgs] @marsam closed pull request #100327 → JuliaMono font → https://git.io/JTI0Z
mthst has joined #nixos
<{^_^}> Channel nixos-20.03 advanced to https://github.com/NixOS/nixpkgs/commit/08d429920bc (from 3 days ago, history: https://channels.nix.gsc.io/nixos-20.03)
vandenoever has joined #nixos
mallox has joined #nixos
kreyren has quit [Remote host closed the connection]
meh` has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @vbgl opened pull request #100330 → ocamlPackages.ppx_sqlexpr: use ppxlib instead of the deprecated ppx_core → https://git.io/JTIK6
kreyren has joined #nixos
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #100277 → [20.09] pythonPackages.google_cloud_dataproc: add missing deps → https://git.io/JTk8h
<{^_^}> [nixpkgs] @AndersonTorres pushed 4 commits to release-20.09: https://git.io/JTIKA
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/ff6fda61600 (from 25 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #100253 → [20.09] pythonPackages.django-anymail: 6.1.0 -> 8.1, fixing build → https://git.io/JTTQJ
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to release-20.09: https://git.io/JTI6f
<eyJhb> clever: how would one run that from the command line thenL
<eyJhb> ?
<clever> eyJhb: nix-build '<nixpkgs/nixos/relese.nix>' -A nixos.manual.x86_64-linux
griff_ has quit [Quit: griff_]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #100193 → A bunch of updates → https://git.io/JTUag
<{^_^}> [nixpkgs] @AndersonTorres pushed 11 commits to master: https://git.io/JTI6l
<eyJhb> Thanks clever ! Looks like there is no reason for the job to fail, at least not locally
<clever> eyJhb: did you test on the same rev of nixpkgs as hydra did?
<eyJhb> Yeah, I actually ran the reproduce locally script
griff_ has joined #nixos
<clever> eyJhb: if you go to the inputs tab on the build i linked, youll find a nixpkgs rev
<eyJhb> https://hydra.nixos.org/build/128369475 dd8423f8655 right?
<eyJhb> Damn. failed
<clever> yeah
<eyJhb> Still REALLY want a "I cancelled this build because X"
<eyJhb> Fixed on latest master anyways
fendor has joined #nixos
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JTIPf
<{^_^}> [nixos-homepage] @garbas pushed to redesign-governance « few mostly mobile fixes »: https://git.io/JTIP9
cr4y1 has joined #nixos
bahamas has joined #nixos
<{^_^}> [nix] @edolstra merged pull request #4136 → Split out uds-remote-store.{cc.hh} → https://git.io/JTkUZ
<{^_^}> [nix] @edolstra pushed 3 commits to master: https://git.io/JTIPp
ericsagnes has quit [Ping timeout: 240 seconds]
vidbina has quit [Ping timeout: 272 seconds]
kirc has joined #nixos
kirc has quit [Client Quit]
kirc has joined #nixos
orivej has quit [Ping timeout: 256 seconds]
tldr32- has quit [Ping timeout: 260 seconds]
kirc has quit [Client Quit]
kirc has joined #nixos
kirc has quit [Client Quit]
kirc has joined #nixos
ericsagnes has joined #nixos
Chiliparrot has joined #nixos
cosimone has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kirc has quit [Quit: kirc]
kirc has joined #nixos
<{^_^}> [nixpkgs] @oxzi opened pull request #100331 → afew: 3.0.0 -> 3.0.1 → https://git.io/JTIMo
kirc has quit [Client Quit]
bbarker has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @aanderse merged pull request #100251 → dnsdist: update compile flags → https://git.io/JTT9D
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/JTIDu
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
gxt has joined #nixos
jod has joined #nixos
jod is now known as Guest16312
<Guest16312> hi guys, did someone got lsp-mode working with latest rust?
jani1234 has joined #nixos
tobiasBora has quit [Ping timeout: 240 seconds]
<{^_^}> [nixos-homepage] @garbas merged pull request #614 → download.tt: KDE → Plasma → https://git.io/JTfmO
<{^_^}> [nixos-homepage] @garbas pushed 5 commits to master: https://git.io/JTIyC
jani1234 has quit [Remote host closed the connection]
jani1234 has joined #nixos
<{^_^}> [nixos-weekly] @domenkozar pushed to master « Add 2020/08 »: https://git.io/JTIy0
Fare has joined #nixos
<{^_^}> [nixos-weekly] @domenkozar pushed to master « fix deploy »: https://git.io/JTIyb
ninjin_ has quit [Remote host closed the connection]
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
vidbina has joined #nixos
<{^_^}> [nixpkgs] @mcmtroffaes opened pull request #100332 → wolfssl: 4.4.0 -> 4.5.0 [backport to 20.03] → https://git.io/JTIS3
kirc has joined #nixos
kirc has quit [Client Quit]
ninjin_ has joined #nixos
<exarkun> having lots of trouble getting wireguard working on nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
kreyren is now known as damo222
damo222 is now known as kreyren
kreyren is now known as notkreyren
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
<{^_^}> [nixpkgs] @mtrsk opened pull request #100333 → ugtrain: init at v0.4.1 → https://git.io/JTI9G
Pidgeotto has joined #nixos
tldr32 has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #100254 → sc-controller: fix broken svg icons → https://git.io/JTTN7
<{^_^}> [nixpkgs] @rnhmjoj pushed 2 commits to master: https://git.io/JTI9l
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
notkreyren is now known as kreyren
acarrico has joined #nixos
jani1234 has quit []
<Raito_Bezarius> exarkun: I'm not sure it has really something to do with NixOS directly
<Raito_Bezarius> so you can establish handshake
<Raito_Bezarius> what does tcpdump on each side gives?
kirc has joined #nixos
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JTIHE
Guest16312 has quit [Remote host closed the connection]
<Raito_Bezarius> also, it depend if $LOCAL_IP is an AllowedIP on the endpoint node
kirc has quit [Client Quit]
<exarkun> Raito_Bezarius: It's a commercial vpn service, I don't have access to the other side
gustavderdrache has joined #nixos
<exarkun> Raito_Bezarius: I have no idea if it has anything to do with NixOS either but #wireguard hasn't been able to help so far either
<{^_^}> [nixos-weekly] @domenkozar merged pull request #130 → Call for Content: 2020/08 → https://git.io/JJ6Ei
<{^_^}> [nixos-weekly] @domenkozar pushed 10 commits to production: https://git.io/JTIHw
<Raito_Bezarius> exarkun: can you tcpdump on your side?
<{^_^}> [nixos-weekly] @domenkozar pushed to master « Call for Content: 2020/09 »: https://git.io/JTIHr
<{^_^}> [nixos-weekly] @domenkozar opened pull request #135 → Call for Content: 2020/09 → https://git.io/JTIHo
<Raito_Bezarius> can you make it work on another OS ?
<exarkun> What should I dump with it? traffic on the wireguard interface? traffic on the uplink interface?
jmeredith has joined #nixos
<Raito_Bezarius> the uplink
<exarkun> beats me, I've never tried setting up wireguard on any other OS
<Raito_Bezarius> what about trying to use wg-quick rather than manual wg?
flythief__ has joined #nixos
<exarkun> I'm not sure. I tried declarative wg-quick in configuration.nix and I couldn't get that to work either.
<exarkun> I didn't try imperative wg-quick.
alp has quit [Ping timeout: 240 seconds]
<Raito_Bezarius> imperative wg-quick could be used for debug, but I have some large WireGuard setup in NixOS (20.03 and beyond) and they're working quite well
<Raito_Bezarius> (non trivial ones with routing stuff, etc)
<Raito_Bezarius> So I think it's either a problem on the endpoint side or on your local side
<Raito_Bezarius> (but it could be also a mix of bugs, etc.)
<exarkun> tcpdump says when I run ping a bunch of packets go out from me to the endpoint but nothing ever comes back
<exarkun> oops not nothing
<exarkun> just far fewer than go out
<exarkun> the return traffic appears to be wireguard keepalives
<flythief__> hi, I just follow nix-pills course (pill 10) and I run installPhase in nix-shell and get error: mkdir cannot create directory /nix/store/hash**-hello. anyone know this? It works when I just run nix-build. thanks firstly :).
<Raito_Bezarius> exarkun: and on the wireguard layer?
<Raito_Bezarius> on the wg layer, you should see those ICMP echo request I suppose
griff__ has joined #nixos
<exarkun> Raito_Bezarius: yes, just those
<Raito_Bezarius> did this commercial VPN already worked before with WireGuard?
<Raito_Bezarius> if you try wireguard on mobile or something like this
<Raito_Bezarius> can you ping an internal known IP rather than Internet?
<exarkun> no, this is a new service, I haven't used it before
griff_ has quit [Ping timeout: 260 seconds]
griff__ is now known as griff_
<flythief__> well, in nix-shell, I shouldn't install it? I find that in pill 11. nix-shell for debuging, nix-build for building it in real environment. :)
ddellacosta has joined #nixos
Rusty1 has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vandenoever has quit [Read error: Connection reset by peer]
vandenoever has joined #nixos
<lordcirth> In nix, how can I remove '.'s from a string?
meh` has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
mthst has quit [Ping timeout: 240 seconds]
<lordcirth> I tried "${filter (!= '.') version}" but got "syntax error, unexpected NEQ"
<{^_^}> [nixpkgs] @rnhmjoj pushed to release-20.09 « sc-controller: fix broken svg icons »: https://git.io/JTI5r
<regnat> lordcirth: You can't use infix operators as functions like you do
<regnat> It needs to be (x: x != ".")
<regnat> also I don't think filter works on strings
<lordcirth> Is a string not a list of char?
mupf has quit [Quit: WeeChat 2.9]
<lordcirth> I guess I am still thinking Haskell
<regnat> Yeah, looks like you are :p
<regnat> Strings are a builtin construct
<regnat> (lists too actually)
waleee-cl has joined #nixos
<lordcirth> '${builtins.replaceStrings "." "" version}' gives "value is a string while a list was expected"
mupf has joined #nixos
<lordcirth> Oh I see
<lordcirth> Seems a bit overkill of a function
xelxebar has joined #nixos
bahamas has quit [Ping timeout: 272 seconds]
mupf_ has joined #nixos
mupf has quit [Read error: Connection reset by peer]
<flythief__> hi, I install bsdgames by `nix-env -iA nixpkgs.bsdgames`. but I get "error: attribute 'nixpkgs' in selection path 'nixpkgs.bsdgames' not found". some know this? thanks.
<flythief__> I find that I can't install all nixpkgs.* directly. but I write it in configure.nix (by `nix-rebuild switch`) will works.
utlaert has joined #nixos
zanc has joined #nixos
<zanc> how do I enable systemd services but not started on startup, i.e. I would rather start it manually `systemctl start service`?
<utlaert> Hi. I'm running NixOS on a vmware guest and even though I have virtualisation.vmware.guest.enable
<utlaert> = true automatic screen scaling doesn't work. Does anyone here have experience with NixOS vmware guests? Thanks in advance.
<utlaert> zanc, can't you just define the systemd.services set?
<utlaert> Or systemd.user.units or something
domogled has joined #nixos
<{^_^}> [nixpkgs] @asdf8dfafjk opened pull request #100334 → xorg.xrandr: 1.5.0 -> 1.5.1 → https://git.io/JTIbK
mupf_ has quit [Quit: WeeChat 2.9]
<zanc> utlaert: systemd.services.<name>.enable?
sangoma has joined #nixos
<zanc> it will prevent the service from running on startup, yes but I won't be able to start it manually using `systemctl` because the `.service` file is now symlinked to `/dev/null`
mupf has joined #nixos
<utlaert> zanc, well if you set the enable flag to true the service will of course start with the system. That's what "enabled" means in the context of systemd.
<utlaert> Ah I see.
<zanc> utlaert: wait, I mean `{ enable = false; }`
domogled has quit [Ping timeout: 272 seconds]
pingiun has quit [Quit: Textual IRC Client: www.textualapp.com]
parsnip has joined #nixos
<parsnip> can I do something like `nix show-derivation nixpkgs.emacs-27.1`
<{^_^}> [nixpkgs] @mweinelt merged pull request #100280 → gallery-dl: 1.15.0 -> 1.15.1 → https://git.io/JTkzx
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JTIAb
<rnhmjoj> utalert: do you mean the resolution switch to match the window size of the SPICE client?
<rnhmjoj> utlaert, sorry
<parsnip> usecase: i'm on macos and i'm trying to understand why a nixpkg would work on macos
<parsnip> historically, i just git clone emacs repo and configure make install
xelxebar has quit [Ping timeout: 240 seconds]
fendor has quit [Ping timeout: 265 seconds]
<parsnip> maybe i should focus on nix pills, identifiers, etc?
xelxebar has joined #nixos
zrsk[m] has joined #nixos
<parsnip> ,channels
<{^_^}> Largest Nix channels: #nixos, #nixos-dev, #nixos-chat, #nixos-aarch64, #nixos-security, #nixcon, #nixos-officehours, #nixops, #haskell.nix, #nix-darwin, #nixos-de, #nixos-emacs, #nixos-on-your-router, #nixos-nur, #nix-lang, #nixos-fr, #nixos-systemd, #nixos-borg, #nixos-wiki
<utlaert> rnhmjoj, not sure what you mean. I'm just talking about screen resolution of the vmware guest running nixos. Apparently I have no derivation with 'spice' in its name and there doesn't seem to be anything like that in the closure of the open-vm-tools derivation.
<zanc> parsnip: you need flakes-enabled Nix to do this `nix show-derivation nixpkgs#emacs` https://nixos.wiki/wiki/Flakes
<rnhmjoj> utlaert: i don't know how vmware works but there are other programs that use a protocol called SPICE (a kind of remote desktop) to connect to a VM. that supports automatic resolution changes but requires running a daemon on the guest, called vdagent
domogled has joined #nixos
bahamas has joined #nixos
<utlaert> rnhmjoj, vmware doesn't seem to be using that. When I compare it with my ubuntu machine (where screen resolution change is working), it has vmtoolsd running as vmusr user, which is what all the forum threads say is needed. But that is also the case on my nix machine.
simonpe^^ has joined #nixos
<simonpe^^> I'm trying to port our build system to WSL2 but when the binaries are downloaded from our cache I'm getting errors about sha256 sum mismatches. Does somebody now why?
<parsnip> and that clarifies that it's a configure make install sort of thing
<utlaert> I remember that for whatever reason the package libgtkmm must be installed (that was the root cause when resolution change didn't work on ubuntu). But it is in the closure of the open-vm-tools derivation, so I don't think that's the problem.
<parsnip> and even has checks for darwin
<{^_^}> [nixpkgs] @aanderse opened pull request #100335 → powerdns: 4.2.1 -> 4.2.3 → https://git.io/JTIpg
bahamas has quit [Ping timeout: 272 seconds]
<rnhmjoj> utlaert: uhm, then i can't help you, sorry. it seems someone else is having your problem here: https://discourse.nixos.org/t/displaying-qemu-vm-off-of-vmware-guest-issues/4663
<rnhmjoj> it may be some extra steps are needed to get that working
<parsnip> hmm, they disable png on darwin?
<utlaert> rnhmjoj, thanks for the pointer!
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JTIp9
<{^_^}> [nixpkgs] @aanderse opened pull request #100336 → powerdns: 4.2.1 -> 4.2.3 [20.09 backport] → https://git.io/JTIpj
bahamas has joined #nixos
HackerIdiot2 has joined #nixos
HackerIdiot2 has quit [Client Quit]
alexherbo2 has joined #nixos
theuni has joined #nixos
<{^_^}> [nixpkgs] @aanderse opened pull request #100337 → pdns-recursor: 4.3.3 -> 4.3.4 → https://git.io/JTIhj
<theuni> hi
<theuni> I'm currently trying to create disk images using "runInLinuxVM" and I'm trying to create images that include LVM volumes. Obviously the runInLinuxVM environment is very "raw" and so I'm stumbling over the fact that there is no udev/device mapper around. I haven't found any use of runInLinuxVM and am currently trying to research the way that the test runner does it's thing, but I haven't found anything useful yet. Does
<theuni> anyone know how to simply either use a full config to run a command in runInLinuxVM or maybe knows a light-weight way to get dm/udev started without the rest of the environment?
knupfer has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to release-20.09: https://git.io/JTIjR
alexherbo2 has quit [Ping timeout: 240 seconds]
cosimone_ has joined #nixos
cosimone has quit [Read error: Connection reset by peer]
cosimone_ is now known as cosimone
orivej has joined #nixos
alp has joined #nixos
<{^_^}> [nixpkgs] @romildo opened pull request #100338 → lounge-gtk-theme: 1.22 -> 1.24 → https://git.io/JTLeW
grobi has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to release-20.03: https://git.io/JTLvT
alexherbo2 has joined #nixos
<{^_^}> [nix] @edolstra pushed to 2.3-maintenance « Installer: Set a known umask »: https://git.io/JTLv0
alexherbo2 has quit [Read error: Connection reset by peer]
alexherbo26 has joined #nixos
<utlaert> rnhmjoj interesting. When I start Gnome with Xorg, screen resizing works. But the mouse doesn't m)
<utlaert> So the vmtoolsd can only communicate with Xorg, but not with Wayland, as it seems.
alexherbo26 has quit [Client Quit]
mthst has joined #nixos
erasmas has joined #nixos
<{^_^}> [nixpkgs] @patrl opened pull request #100339 → slade-git 3.1.2 -> 3.2.0 → https://git.io/JTLfS
<{^_^}> [nixpkgs] @rople380 opened pull request #100340 → bit: init at 0.5.11 → https://git.io/JTLf9
sputny has joined #nixos
<{^_^}> [hydra] @andir opened pull request #823 → ldap: Use hashed passwords in the test → https://git.io/JTLJL
graf_blutwurst has quit [Remote host closed the connection]
justanotheruser has quit [Ping timeout: 272 seconds]
knupfer has quit [Ping timeout: 260 seconds]
knupfer has joined #nixos
<rnhmjoj> utlaert: but does screen resizing works on non-nixos guest/hosts? maybe it's simply not supported when using a wayland compositor
joey has joined #nixos
<utlaert> rnhmjoj, as I said, it works fine in my ubuntu VM, which is also running under wayland.
<{^_^}> [nixpkgs] @etu opened pull request #100341 → php: move extension derivations to separate dirs → https://git.io/JTLTI
asbachb has joined #nixos
<asbachb> Hi. Anyone running a gitea instance?
vandenoever has quit [Read error: Connection reset by peer]
vandenoever has joined #nixos
vandenoever has joined #nixos
vandenoever has quit [Changing host]
simonpe^^ has quit [Remote host closed the connection]
<exarkun> wg-quick seems even less successful than wg. the interface comes up but there's no confirmation of a handshake.
<rnhmjoj> utlaert: ah, sorry. so, yes that's suspiscious. you should open an issue in nixpkgs
Ariakenom has quit [Ping timeout: 256 seconds]
<utlaert> Is there any hope? With over 4000 issues open x_x
<Taneb> utlaert: there may be over 4000 open issues, but there's almost 14000 closed ones. There is plenty of hope!
<rnhmjoj> yeah, don't be afraid of the number of issues. try pinging peter hoeg, which has worked on this nixos module
<utlaert> Found an existing issue even: https://github.com/NixOS/nixpkgs/issues/45751
<{^_^}> #45751 (by cawilliamson, 2 years ago, open): open-vm-tools doesn't enable display autoscaling on Wayland
<{^_^}> [nixpkgs] @SeTSeR opened pull request #100342 → lazygit: 0.22.8 -> 0.23.2 → https://git.io/JTLks
<zanc> why does `nix-copy-closure --from user@hostname /nix/store/abcde...` while `nix-env -i --substituters ssh://user@hostname` does not? it gave me an error `cannot connect to '192.168.0.106'`
berberman has quit [Quit: ZNC 1.7.5 - https://znc.in]
berberman has joined #nixos
<flythief__> hi, I want to use gd lib. But I find that gd in nix-shell only refers gd-bin. how can i get directory of gd-dev which will contain include and lib ?
<clever> zanc: nix-copy-closure ssh's from the current user, but `--substituters` will try to ssh from root, via the nix-daemon, which lacks your $SSH_AUTH_SOCK
berberman has quit [Max SendQ exceeded]
berberman has joined #nixos
domogled has quit [Ping timeout: 240 seconds]
Fare has quit [Quit: Leaving]
<zanc> clever: so how do fix it?
berberman has quit [Max SendQ exceeded]
<clever> zanc: put a private key in /root/.ssh/id_rsa, that lacks a password, and can get into user@hostname
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
<rnhmjoj> zanc: are you on nixos?
<zanc> rnhmjoj: yes
marcy_ has joined #nixos
philr has quit [Ping timeout: 244 seconds]
berberman has joined #nixos
<zanc> clever: do I put it `/root/.ssh/id_rsa` in my root or remote?
berberman has quit [Max SendQ exceeded]
bahamas has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @romildo opened pull request #100344 → enlightenment.efl: 1.25.0 -> 1.25.1 → https://git.io/JTLI3
<clever> zanc: on the machine where you ran `nix-env -i --substituters ssh://user@hostname`
berberman has joined #nixos
<clever> zanc: the nix-daemon on that machine, is what did `ssh user@hostname` as root
<rnhmjoj> zanc: i'm not sure it's the same thing but to let the nix-daemon connect to my remote builder i configured nix.buildMachines.*.sshKey and added an entry in program.ssh.knownHosts
<clever> rnhmjoj: thats more for building things on a remote machine, rather then just checking if it already has a built copy
stigo has quit [Quit: stigo]
stigo has joined #nixos
berberman has quit [Max SendQ exceeded]
<jmercouris> hello everyone, I'm following the guide here: https://nixos.wiki/wiki/Nvidia
<jmercouris> and I do not understand, I keep getting syntax errors when trying to use the default configuration
<jmercouris> for offload mode
<jmercouris> starts with "let nvidia-offload = pkgs.writeShellScriptBin "nvidia-offload" ''"
knupfer has quit [Quit: knupfer]
knupfer1 has joined #nixos
berberman has joined #nixos
<asbachb> jmercouris: Are you on unstable?
<jmercouris> I am on 20.09
justanotheruser has joined #nixos
<jmercouris> asbachb: ^
justanotheruser has quit [Client Quit]
noudle has joined #nixos
<asbachb> jmercouris: Maybe that's the problem. The wiki page states that it's only available on unstable and 20.09.
<jmercouris> I have to switch to an unstable channel?
knupfer1 is now known as knupfer
<jmercouris> unstable 20.09?
berberman has quit [Max SendQ exceeded]
berberman has joined #nixos
<{^_^}> [nixpkgs] @romildo merged pull request #99620 → matcha-gtk-theme: 2020-09-28 -> 2020-10-05 → https://git.io/JUFFM
<{^_^}> [nixpkgs] @romildo pushed 2 commits to master: https://git.io/JTLLs
<{^_^}> [nixpkgs] @worldofpeace merged pull request #99909 → [20.09] backport:netbeans: 12.0 -> 12.1 - fix CVE-2020-11986 → https://git.io/JUAph
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to release-20.09: https://git.io/JTLLn
berberman has quit [Max SendQ exceeded]
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
berberman has joined #nixos
<asbachb> jmercouris: I don't know that's how I interpret that wiki page.
trulsa has joined #nixos
kenshinCH has joined #nixos
ransom has joined #nixos
trulsa has quit [Client Quit]
berberman has quit [Max SendQ exceeded]
<{^_^}> [nix] @volth opened pull request #4141 → Handle amount of disk space saved by hard linking being negative → https://git.io/JTLLr
berberman has joined #nixos
trulsa has joined #nixos
<exarkun> is it possible to pin nixpkgs to different things for different hosts in a deployment managed by nixops
berberman has quit [Max SendQ exceeded]
berberman has joined #nixos
<jasom> is there a good quick reference for what punctuation needs to be quoted in the nix expression language?
berberman has quit [Max SendQ exceeded]
berberman has joined #nixos
emmanuel` has joined #nixos
jabster28 has joined #nixos
utlaert has quit [Quit: Connection closed]
berberman has quit [Max SendQ exceeded]
proofofkeags has joined #nixos
proofofkeags_ has joined #nixos
berberman has joined #nixos
ransom has quit [Quit: Textual IRC Client: www.textualapp.com]
mjsir911 has joined #nixos
proofofkeags_ has quit [Remote host closed the connection]
proofofkeags has quit [Remote host closed the connection]
proofofkeags_ has joined #nixos
proofofkeags has joined #nixos
berberman has quit [Max SendQ exceeded]
shibboleth has joined #nixos
fendor has joined #nixos
berberman has joined #nixos
ManiacOfMadness has quit [Ping timeout: 272 seconds]
jabster28 has quit [Ping timeout: 264 seconds]
noonien has joined #nixos
berberman has quit [Max SendQ exceeded]
<{^_^}> [nixpkgs] @SeTSeR opened pull request #100345 → foot: 1.4.4 -> 1.5.1 → https://git.io/JTLtQ
<noonien> clever: is it possible to create a kexec tarball for a running nixos system?
asbachb has quit [Ping timeout: 245 seconds]
berberman has joined #nixos
<clever> noonien: possibly
<noonien> i just created the kexec tarball on the target system, this way the /nix/store paths already existed and didn't fail because tar couldn't extract the files
<clever> noonien: oh, if your on nix, you dont want to create the tarball
<clever> system.build.kexec_tarball = pkgs.callPackage <nixpkgs/nixos/lib/make-system-tarball.nix> {
<clever> { object = config.system.build.kexec_script; symlink = "/kexec_nixos"; }
<clever> noonien: instead of building kexec_tarball, you build kexec_script
berberman has quit [Max SendQ exceeded]
<clever> then result will point to the final symlink, already in /nix/store
<noonien> ah, nice!
proofofkeags__ has joined #nixos
justanotheruser has joined #nixos
<clever> and you can nix-copy-closure it to wherever, and then just run it
cr4y1 has quit [Remote host closed the connection]
berberman has joined #nixos
<clever> the tarball, is to let you skip installing nix on the target, because your going to format it anyways
<noonien> yeah, in case it's a non-nix system
<noonien> thanks!
<hyper_ch> hmmm, qtwebkit still breaks unstable
proofofkeags_ has quit [Ping timeout: 240 seconds]
proofofkeags has quit [Ping timeout: 240 seconds]
proofofkeags has joined #nixos
civodul has joined #nixos
<{^_^}> [nixpkgs] @Ma27 opened pull request #100346 → matrix-synapse: 1.20.1 -> 1.21.0 → https://git.io/JTLqd
nature has joined #nixos
Sanchayan has quit [Quit: leaving]
waleee-cl has quit [Quit: Connection closed for inactivity]
kapil_ has quit [Quit: ZNC 1.7.5 - https://znc.in]
<{^_^}> [nixpkgs] @jonringer opened pull request #100347 → nixos/doc: add nvidia prime changes → https://git.io/JTLmg
emmanuel` has quit [Ping timeout: 244 seconds]
sangoma has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @flokli merged pull request #100331 → afew: 3.0.0 -> 3.0.1 → https://git.io/JTIMo
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JTLmd
jabster28 has joined #nixos
<{^_^}> [nixpkgs] @doronbehar merged pull request #100342 → lazygit: 0.22.8 -> 0.23.2 → https://git.io/JTLks
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTLYs
cole-h has joined #nixos
kapil_ has joined #nixos
zolk3ri[m] has quit [Quit: Idle for 30+ days]
zanc has quit [Quit: WeeChat 2.9]
<jmercouris> why is my thinkpad usb c dock not charging on NixOS?
<jmercouris> it also doesn't register my display on USB C
<jmercouris> any tips?
zupo has joined #nixos
grobi has quit [Quit: WeeChat 2.8]
jabster28 has quit [Ping timeout: 260 seconds]
growpotkin has joined #nixos
jabster28 has joined #nixos
taylan has quit [Remote host closed the connection]
<etu> jmercouris: Is the power adaptor plugged in to the dock powerful enough?
<etu> jmercouris: I made the misstake to plug in another one than the one that came with that had double the wattage
CyberManifest has joined #nixos
cole-h has quit [Quit: Goodbye]
cole-h has joined #nixos
<jmercouris> etu: a good point, I will check
emmanuel` has joined #nixos
<jmercouris> both are 135 watt
<stigo> jmercouris: `tlp-stat -b` might give some more info
<{^_^}> [nixpkgs] @jonringer merged pull request #100272 → python3Packages.cocotb: fix tests, 1.3.1 -> 1.3.2 → https://git.io/JTk32
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/JTLsW
alp has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @ardumont opened pull request #100348 → mediatomb/gerbera: Add release note information for 21.03 → https://git.io/JTLsE
mDuff has joined #nixos
<jmercouris> stigo: how can I install tlp-stat?
<{^_^}> [nixpkgs] @jonringer merged pull request #100204 → zuki-themes: 3.36-3 -> 3.36-4 → https://git.io/JTUDo
<{^_^}> [nixpkgs] @jonringer pushed commit from @romildo to master « zuki-themes: 3.36-3 -> 3.36-4 »: https://git.io/JTLsM
<jmercouris> like literally nothing is working from this dock
<jmercouris> I hhave only USB and ethernet working
<jmercouris> no power, no display
<{^_^}> [nixpkgs] @jonringer merged pull request #100203 → plano-theme: 3.36-1 -> 3.36-2 → https://git.io/JTUDs
<{^_^}> [nixpkgs] @jonringer pushed commit from @romildo to master « plano-theme: 3.36-1 -> 3.36-2 »: https://git.io/JTLs7
CyberManifest has quit [Quit: Leaving...]
<{^_^}> [nixpkgs] @jonringer merged pull request #100200 → amber-theme: 3.36-1 -> 3.36-2 → https://git.io/JTUMW
<{^_^}> [nixpkgs] @jonringer pushed commit from @romildo to master « amber-theme: 3.36-1 -> 3.36-2 »: https://git.io/JTLsF
<stigo> jmercouris: you might need to set it up with `services.tlp.enable = true;`
<jmercouris> OK
<jmercouris> how can I set up my dock?
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
sangoma has joined #nixos
Rusty1 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
waleee-cl has joined #nixos
<{^_^}> [nixpkgs] @jul1u5 opened pull request #100349 → virt-manager: 2.2.1 -> 3.1.0 → https://git.io/JTLGr
fendor_ has joined #nixos
Chiliparrot has joined #nixos
fendor has quit [Ping timeout: 272 seconds]
kapil_ has quit [Quit: ZNC 1.7.5 - https://znc.in]
fendor_ is now known as fendor
<noonien> i'm trying to follow https://grahamc.com/blog/erase-your-darlings and have a question
<noonien> does /etc/nixos/configuration.nix not need to be persisted?
<noonien> can i change its path? or do i create a symlink to /etc?
n9nes has joined #nixos
n9nes- has quit [Read error: Connection reset by peer]
<{^_^}> [nixos-homepage] @garbas pushed to redesign-community « many small fixes mostly around mobile »: https://git.io/JTLZd
<{^_^}> [nixos-homepage] @garbas pushed 33 commits to redesign-community: https://git.io/JTLZh
<{^_^}> [nixos-homepage] @garbas pushed 35 commits to redesign-governance: https://git.io/JTLnv
dstzd has joined #nixos
dstzd has joined #nixos
dstzd has quit [Changing host]
<clever> noonien: by default, nixos-rebuild will try to load <nixos-config> from $NIX_PATH
joesventek has joined #nixos
<clever> [clever@amd-nixos:~]$ echo $NIX_PATH
<clever> /home/clever/.nix-defexpr/channels:nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels
<clever> noonien: which defaults to /etc/nixos/configuration.nix
kapil_ has joined #nixos
<clever> noonien: so you can use nix.nixPath to point it anywhere you want
knupfer has quit [Remote host closed the connection]
<clever> noonien: or use `nixos-rebuild switch -I nixos-config=/anywhere/you/want.nix` to just force it
knupfer has joined #nixos
joesventek has quit [Client Quit]
rajivr has quit [Quit: Connection closed for inactivity]
dstzd has joined #nixos
dstzd has quit [Changing host]
dstzd has joined #nixos
<noonien> hmm, i see. i wonder what the author did
dstzd has quit [Client Quit]
grumboo has joined #nixos
<noonien> i would rather not modify nixPath, so i could just create a symlink
dstzd has joined #nixos
dstzd has joined #nixos
dstzd has quit [Changing host]
<clever> noonien: you can also create a dummy configuration.nix with just `{ imports = [ /path/to/real/configuration.nix ]; }`
<clever> noonien: symlinks kind of mess with the ./foo logic in nix, it can wind up being relative to the wrong dir
<Raito_Bezarius> ,locate libSM
<{^_^}> Found in packages: xlibs.libSM.doc
<noonien> ah, i see.
<Raito_Bezarius> ,locate libICE
<{^_^}> Found in packages: xlibs.libICE.doc
Darkmatter66_ has joined #nixos
Darkmatter66 has quit [Ping timeout: 244 seconds]
joesventek has joined #nixos
ris has joined #nixos
nikivi has joined #nixos
* clever heads off to bed
<noonien> thanks clever! gn!
<Raito_Bezarius> good night clever
<{^_^}> [nixpkgs] @vidbina opened pull request #100350 → ghorg: init at 1.4.0 → https://git.io/JTLcs
nikivi has quit [Client Quit]
nikivi has joined #nixos
dstzd has joined #nixos
nikivi has quit [Client Quit]
dstzd has quit [Client Quit]
<Raito_Bezarius> does anyone know if buildFHS hide my /etc/fonts stuff?
Rusty1 has joined #nixos
dstzd has joined #nixos
dstzd has joined #nixos
dstzd has quit [Changing host]
<Raito_Bezarius> I'm trying a annoying proprietary tool and it has fonts issue
<Raito_Bezarius> in a FHS
nikivi has joined #nixos
<Raito_Bezarius> it's using fontconfig apparently
dstzd has quit [Client Quit]
nikivi has quit [Client Quit]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
joesventek has quit [Quit: Quit]
nikivi has joined #nixos
m4ts has joined #nixos
<Raito_Bezarius> okay, steamPackages.steam-fonts did the job :')
m4tsa_ has quit [Ping timeout: 272 seconds]
joesventek has joined #nixos
__monty__ has joined #nixos
grobi has joined #nixos
dstzd has joined #nixos
dstzd has joined #nixos
dstzd has quit [Changing host]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
zupo has quit [Client Quit]
meh` has quit [Ping timeout: 256 seconds]
ManiacOfMadness has joined #nixos
Ikositetrachor has joined #nixos
is_null has joined #nixos
<{^_^}> [nixpkgs] @turion opened pull request #100351 → Dev add agdarsec → https://git.io/JTLCM
zupo has joined #nixos
griff_ has quit [Ping timeout: 244 seconds]
alp has joined #nixos
<{^_^}> [nixpkgs] @saschagrunert opened pull request #100352 → ginkgo: 1.14.1 -> 1.14.2 → https://git.io/JTLWJ
mthst has quit [Ping timeout: 240 seconds]
flythief__ has quit [Quit: Connection closed for inactivity]
Ikositetrachor has quit [Ping timeout: 260 seconds]
<Ke> I don't have one
<Ke> I git clone and set NIXOS_CONFIG or something
Ikositetrachor has joined #nixos
ManiacOfMadness has quit [Ping timeout: 240 seconds]
<Ke> you only need it when rebuilding nixos
tazjin is now known as Benjowo
czer00 has quit [Ping timeout: 240 seconds]
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
joesventek has quit [Quit: Quit]
<xensky> not sure if this is a nix problem but it started after i moved over; clicking links in discord doesn't open in my browser, has anyone else experienced this?
Benjowo is now known as tazjin
endformationage has joined #nixos
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
cirno999 has joined #nixos
joesventek has joined #nixos
nikivi has quit [Client Quit]
dstzd has joined #nixos
dstzd has joined #nixos
dstzd has quit [Changing host]
nikivi has joined #nixos
czer00 has joined #nixos
<cirno999> 20.09 12 Oct release still on course?
<{^_^}> [nixpkgs] @risicle opened pull request #100353 → [20.09] python3Packages.cocotb: fix tests, 1.3.1 -> 1.3.2 → https://git.io/JTL8m
Acou_Bass has joined #nixos
<euank> xensky: to give you some paths to debug with, xdg is generally how applications open those links. `xdg-open "https://example.com"` in a terminal can confirm if it's discord specific, or if your xdg mime setup isn't configured correctly
mupf has quit [Quit: WeeChat 2.9]
sascha__ has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @risicle merged pull request #100223 → python3Packages.proto-plus: enable tests, disable for py2 → https://git.io/JTTcY
<{^_^}> [nixpkgs] @risicle pushed 2 commits to master: https://git.io/JTL8c
<xensky> works fine through xdg
mupf has joined #nixos
ericsagnes has quit [Ping timeout: 260 seconds]
<xensky> another counter example is that links work fine in irc (quassel)
<euank> Ah, yeah, weird. Maybe `XDG_UTILS_DEBUG_LEVEL=2 Discord` from a terminal will print more info on what it's trying, but I'm not sure if it will.
mupf has quit [Client Quit]
<euank> I assume it's running via a wrapper script, and I'd hope the wrapper isn't clobbering XDG_DATA_DIRS
hnOsmium0001 has joined #nixos
mupf has joined #nixos
justanotheruser has quit [Ping timeout: 265 seconds]
cosimone has quit [Quit: cosimone]
<xensky> i'll try that
<{^_^}> [nixpkgs] @davidak opened pull request #100354 → limesurvey: 3.23.0+200813 -> 3.23.7+201006 → https://git.io/JTL44
<{^_^}> [nixpkgs] @risicle merged pull request #100168 → python3Packages.perfplot: 0.5.0 -> 0.8.4, fix build by packaging new dependencies → https://git.io/JTJj9
<{^_^}> [nixpkgs] @risicle pushed 4 commits to master: https://git.io/JTL4B
ericsagnes has joined #nixos
joko has joined #nixos
ManiacOfMadness has joined #nixos
joesventek has quit [Quit: Quit]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
joesventek has joined #nixos
nikivi has joined #nixos
marc1 has quit [Quit: WeeChat 2.8]
<{^_^}> [nixpkgs] @risicle opened pull request #100355 → [20.09] pythonPackages.wxPython: fix build on darwin → https://git.io/JTLBe
marc1 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #99983 → pythonPackages.arrow: 0.15.8 -> 0.17.0 → https://git.io/JUhUZ
<{^_^}> [nixpkgs] @jonringer pushed commit from @drewrisinger to staging « pythonPackages.arrow: 0.15.8 -> 0.17.0 »: https://git.io/JTLBN
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
<xensky> yup, its wrapper is clobbering xdg data dirs. i could edit the script but it wouldn't survive updates
<{^_^}> [nixpkgs] @m1cr0man opened pull request #100356 → nixos/acme: Docs, explain how to set permissions → https://git.io/JTLRG
<{^_^}> [nixpkgs] @danieldk merged pull request #97938 → vscode/vscodium: split update scripts → https://git.io/JU8uI
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JTLR8
<{^_^}> [nixpkgs] @jonringer merged pull request #100355 → [20.09] pythonPackages.wxPython: fix build on darwin → https://git.io/JTLBe
<{^_^}> [nixpkgs] @jonringer pushed commit from @risicle to release-20.09 « pythonPackages.wxPython: fix build on darwin »: https://git.io/JTLRR
berberman_ has joined #nixos
grobi has quit [Quit: WeeChat 2.8]
berberman has quit [Ping timeout: 260 seconds]
<xensky> the offending line looks like it should join with existing path though
<{^_^}> [nixpkgs] @jonringer merged pull request #100167 → [20.09] python3Packages.dask: limit processes on tests, fix downstream → https://git.io/JTJxo
<{^_^}> [nixpkgs] @jonringer pushed 9 commits to release-20.09: https://git.io/JTLRX
joey has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #100353 → [20.09] python3Packages.cocotb: fix tests, 1.3.1 -> 1.3.2 → https://git.io/JTL8m
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to release-20.09: https://git.io/JTLRD
joey has joined #nixos
Ikositetrachor has quit [Ping timeout: 256 seconds]
meh` has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #100337 → pdns-recursor: 4.3.3 -> 4.3.4 → https://git.io/JTIhj
<{^_^}> [nixpkgs] @rnhmjoj pushed 3 commits to master: https://git.io/JTL0m
supercoven has quit [Ping timeout: 272 seconds]
meh` has quit [Ping timeout: 260 seconds]
DamienCassou has quit [Quit: killed]
daemon1024 has quit [Quit: killed]
yoctocell[m] has quit [Quit: killed]
regnat has quit [Quit: killed]
aloiscochard[m] has quit [Quit: killed]
SplitFire[m] has quit [Quit: killed]
rednaZ[m] has quit [Quit: killed]
Notkea[m] has quit [Quit: killed]
eadwu[m] has quit [Quit: killed]
Ox4A6F has quit [Quit: killed]
killercup[m] has quit [Quit: killed]
Dandellion has quit [Quit: killed]
davidak[m] has quit [Quit: killed]
ipv6[m] has quit [Quit: killed]
hpfr has quit [Quit: killed]
tristan[m] has quit [Quit: killed]
kraem has quit [Quit: killed]
fgaz has quit [Quit: killed]
sshow[m] has quit [Quit: killed]
scaroo[m] has quit [Quit: killed]
jonathan[m]3 has quit [Quit: killed]
theglenn888[m] has quit [Quit: killed]
billsun has quit [Quit: killed]
ilya-fedin has quit [Quit: killed]
jfaassen[m] has quit [Quit: killed]
us3r[m] has quit [Quit: killed]
bloodyfish[m] has quit [Quit: killed]
aanderse has quit [Quit: killed]
roberth has quit [Quit: killed]
MatrixTravelerbo has quit [Quit: killed]
user_account[m] has quit [Quit: killed]
ThaEwat has quit [Quit: killed]
Amit[m] has quit [Quit: killed]
rnhmjoj has quit [Quit: killed]
NobbZ[m] has quit [Quit: killed]
stu_[m] has quit [Quit: killed]
bbigras has quit [Quit: killed]
Ke has quit [Quit: killed]
unclechu has quit [Quit: killed]
eddyb has quit [Quit: killed]
colemickens has quit [Quit: killed]
abbec has quit [Quit: killed]
Valodim[m] has quit [Quit: killed]
chinmayxd[m] has quit [Quit: killed]
treed[m] has quit [Quit: killed]
inquisitiv3 has quit [Quit: killed]
kevincox[m] has quit [Quit: killed]
slabity has quit [Quit: killed]
Dennis[m]3 has quit [Quit: killed]
bennofs[m]1 has quit [Quit: killed]
ndarilek has quit [Quit: killed]
reyman[m] has quit [Quit: killed]
vpfeiffer[m] has quit [Quit: killed]
Avoozl[m] has quit [Quit: killed]
jlv has quit [Quit: killed]
HumanJohn[m] has quit [Quit: killed]
govanify has quit [Quit: killed]
zrsk[m] has quit [Quit: killed]
Ikositetrachor has joined #nixos
doomer[m] has quit [Quit: killed]
dxu[m] has quit [Quit: killed]
the_rajsun[m] has quit [Quit: killed]
AmitLevy[m] has quit [Quit: killed]
mullein[m] has quit [Quit: killed]
matthewkenigsber has quit [Quit: killed]
das-g[m] has quit [Quit: killed]
kueckieben[m] has quit [Quit: killed]
chreekat[m] has quit [Quit: killed]
axx has quit [Quit: killed]
georg[m] has quit [Quit: killed]
boogiewoogie[m] has quit [Quit: killed]
mindtree[m] has quit [Quit: killed]
unrooted[m] has quit [Quit: killed]
maralorn has quit [Quit: killed]
aterius has quit [Quit: killed]
caef^ has quit [Max SendQ exceeded]
<hexa-> \o
caef^ has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #100060 → nixos/dnsdist: use upstream systemd unit → https://git.io/JTeOA
<{^_^}> [nixpkgs] @rnhmjoj pushed 2 commits to master: https://git.io/JTL0b
mallox has quit [Quit: WeeChat 2.9]
mallox has joined #nixos
lopsided98 has joined #nixos
grahamc[m] has joined #nixos
Izorkin has joined #nixos
cosimone has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
noudle has quit []
zupo_ has joined #nixos
cr4y1 has joined #nixos
emmanuel` has quit [Remote host closed the connection]
emmanuel` has joined #nixos
emmanuel` has quit [Client Quit]
emmanuel_erc has joined #nixos
mt[m] has joined #nixos
NobbZ[m] has joined #nixos
amanjeev[m] has joined #nixos
thefloweringash has joined #nixos
anthony[m] has joined #nixos
darkharmony9999[ has joined #nixos
hiroshi[m] has joined #nixos
ryantm has joined #nixos
MilkManzJourDadd has joined #nixos
slabity has joined #nixos
annemarie[m]2 has joined #nixos
regnat has joined #nixos
chreekat[m] has joined #nixos
Notkea[m] has joined #nixos
ndarilek has joined #nixos
cyberwolf[m] has joined #nixos
mindtree[m] has joined #nixos
yusdacra[m] has joined #nixos
treed[m] has joined #nixos
ilya-fedin has joined #nixos
abcrawf has joined #nixos
grin[m] has joined #nixos
Yakulu[m] has joined #nixos
lndn[m] has joined #nixos
barn0 has joined #nixos
bk1603[m] has joined #nixos
wak-work has joined #nixos
ejpcmac has joined #nixos
bohan[m] has joined #nixos
inquisitiv3 has joined #nixos
georgyo[m] has joined #nixos
us3r[m] has joined #nixos
bennofs[m] has joined #nixos
maralorn has joined #nixos
paalped[m] has joined #nixos
davidak[m] has joined #nixos
toto[m] has joined #nixos
rycee has joined #nixos
srid has joined #nixos
kc[m] has joined #nixos
daemon1024 has joined #nixos
srxl has joined #nixos
leons has joined #nixos
yurb has joined #nixos
jgart[m] has joined #nixos
HumanJohn[m] has joined #nixos
JJJollyjim has joined #nixos
hsiktas[m] has joined #nixos
rednaZ[m] has joined #nixos
mcaju has joined #nixos
aterius has joined #nixos
SpaghettiCthulhu has joined #nixos
fjodor[m] has joined #nixos
TomaszKsiak[m] has joined #nixos
balsoft has joined #nixos
GuillaumeChrel[m has joined #nixos
crazymind-102[m] has joined #nixos
jlv has joined #nixos
michaelpj has joined #nixos
mica[m] has joined #nixos
qrilka[m] has joined #nixos
stu_[m] has joined #nixos
esclear_m has joined #nixos
shu9 has joined #nixos
worldofpeace has joined #nixos
musicmatze has joined #nixos
jumper149[m] has joined #nixos
Dennis[m]1 has joined #nixos
Valodim[m] has joined #nixos
axx has joined #nixos
unclechu has joined #nixos
alexfmpe has joined #nixos
matthewkenigsber has joined #nixos
JankLoogi has joined #nixos
fgaz has joined #nixos
roberth has joined #nixos
yangm has joined #nixos
timclassic has joined #nixos
juan[m]1 has joined #nixos
njha[m] has joined #nixos
cab404[m] has joined #nixos
clefru_mm has joined #nixos
bloodyfish[m] has joined #nixos
killercup[m] has joined #nixos
rschulman has joined #nixos
ZerataX has joined #nixos
ThaEwat has joined #nixos
sjn[m] has joined #nixos
theglenn888[m] has joined #nixos
mkg20001 has joined #nixos
TheSirC[m] has joined #nixos
Ke has joined #nixos
bourbon has joined #nixos
puzzlewolf has joined #nixos
Hayden[m] has joined #nixos
test128383[m] has joined #nixos
ialhamad[m] has joined #nixos
abbec has joined #nixos
jonathan[m]3 has joined #nixos
lahmilahsi[m] has joined #nixos
mullein[m] has joined #nixos
l33[m] has joined #nixos
CRTified[m] has joined #nixos
ArtemVorotnikov[ has joined #nixos
dominicusin[m] has joined #nixos
jschievink has joined #nixos
fzakaria1 has joined #nixos
srasu[m] has joined #nixos
kevincox[m] has joined #nixos
dxb[m] has joined #nixos
georg[m] has joined #nixos
unrooted[m] has joined #nixos
nh2[m] has joined #nixos
theduke has joined #nixos
kraem has joined #nixos
domenkozar[m] has joined #nixos
alexarice[m] has joined #nixos
philipp[m] has joined #nixos
Amit[m] has joined #nixos
verum_alpha[m] has joined #nixos
IslandUsurper[m] has joined #nixos
ghasshee[m] has joined #nixos
hpfr has joined #nixos
qbit[m] has joined #nixos
l_inus[m] has joined #nixos
colmeka has joined #nixos
Rian[m] has joined #nixos
codyopel has joined #nixos
doomer[m] has joined #nixos
boogiewoogie[m] has joined #nixos
reyman[m] has joined #nixos
betrion[m] has joined #nixos
yoctocell[m] has joined #nixos
jonte[m] has joined #nixos
bbigras has joined #nixos
nyu[m] has joined #nixos
ongy[m] has joined #nixos
scaroo[m] has joined #nixos
DamienCassou has joined #nixos
Ox4A6F has joined #nixos
Ericson2314 has joined #nixos
hazel[m] has joined #nixos
siraben has joined #nixos
eadwu[m] has joined #nixos
AntonioYang[m] has joined #nixos
nilsirl[m] has joined #nixos
jehova[m] has joined #nixos
quidome[m] has joined #nixos
habbasi[m] has joined #nixos
sshow[m] has joined #nixos
neothefox has joined #nixos
crazazy[m] has joined #nixos
timokau[m] has joined #nixos
pinage404[m] has joined #nixos
colemickens has joined #nixos
alienpirate5 has joined #nixos
tnias[m] has joined #nixos
chinmayxd[m] has joined #nixos
ipv6[m] has joined #nixos
zie[m] has joined #nixos
cchalc[m] has joined #nixos
evils[m] has joined #nixos
ptman_[m] has joined #nixos
stuebinm[m] has joined #nixos
Hirmes[m] has joined #nixos
dxu[m] has joined #nixos
l-as has joined #nixos
steve[m] has joined #nixos
ma27[m] has joined #nixos
Dandellion has joined #nixos
a4wc6n[m] has joined #nixos
q3k[m] has joined #nixos
MrShatteredMirro has joined #nixos
humancalico[m] has joined #nixos
tilcreator has joined #nixos
Jake[m]1 has joined #nixos
ptotter[m] has joined #nixos
kyren has joined #nixos
ks2048[m] has joined #nixos
aloiscochard[m] has joined #nixos
ntnkwmkmnw[m] has joined #nixos
drozdziak1 has joined #nixos
Minijackson[m] has joined #nixos
govanify has joined #nixos
emily has joined #nixos
tristan[m] has joined #nixos
neonfuz2 has joined #nixos
nicolas[m] has joined #nixos
octowan[m] has joined #nixos
nikola[m] has joined #nixos
omasanori[m] has joined #nixos
jfaassen[m] has joined #nixos
pheoxy has joined #nixos
aanderse has joined #nixos
Anonymous[m] has joined #nixos
the_rajsun[m] has joined #nixos
danielrf[m] has joined #nixos
maxfieldl[m] has joined #nixos
jbal[m] has joined #nixos
Avoozl[m] has joined #nixos
phirsch has joined #nixos
jtojnar has joined #nixos
eddyb has joined #nixos
menelaos[m] has joined #nixos
kueckieben[m] has joined #nixos
billsun has joined #nixos
sstreet[m] has joined #nixos
hr[m] has joined #nixos
spudly[m] has joined #nixos
MElemental[m] has joined #nixos
leonardp has joined #nixos
das-g[m] has joined #nixos
JaakkoLuttinen[m has joined #nixos
hsngrmpf[m] has joined #nixos
tyrion-mx has joined #nixos
fatjedi[m] has joined #nixos
daddy_james[m] has joined #nixos
lurpahi has joined #nixos
vpfeiffer[m] has joined #nixos
yeongsheng_tan[m has joined #nixos
rnhmjoj has joined #nixos
SplitFire[m] has joined #nixos
Preisschild has joined #nixos
bjtitus[m] has joined #nixos
kaiha[m] has joined #nixos
felschr[m] has joined #nixos
Alex[m]4 has joined #nixos
ecou[m] has joined #nixos
DanP[m] has joined #nixos
manu12[m] has joined #nixos
callahad[m] has joined #nixos
infinisil-m has joined #nixos
superchonk[m] has joined #nixos
duktus[m] has joined #nixos
zrsk[m] has joined #nixos
user_account[m] has joined #nixos
demoulin[m] has joined #nixos
schmittlauch[m] has joined #nixos
onny[m] has joined #nixos
faya01[m] has joined #nixos
mnm[m] has joined #nixos
timotheel-f[m] has joined #nixos
AmitLevy[m] has joined #nixos
mzumquadrat[m] has joined #nixos
<emmanuel_erc> Hello there. I am trying to build a docker image with nix
<emmanuel_erc> However, I'm noticing in the nix store of my docker image, there are build-time dependencies that have no business being there.
<emmanuel_erc> Is anyone here familiar with how to ensure that the docker image does not include unnecessary items in the nix store?
is_null has quit [Ping timeout: 260 seconds]
mthst has joined #nixos
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
bahamas has joined #nixos
Izorkin has joined #nixos
<simpson> Are you using dockerTools? It is better than `FROM nixos/nix` Dockerfiles at only including what is needed.
<emmanuel_erc> I am using dockerTools
<simpson> And the dependencies are correctly ignored in other contexts? I don't see anything in pkgs/build-support/docker which would do this, but I'm not very familiar with this code.
<emmanuel_erc> No they aren't
cjpbirkbeck has joined #nixos
<emmanuel_erc> I've had to manually ignore them elsewhere
<simpson> Then probably the best course is to figure out why these dependencies keep getting pulled in even though they're supposedly build-time-only.
is_null has joined #nixos
<numkem> Has anyone played with the latest version of node2nix? I'm using the nodeDependencies that was just introduces that expose what npm install would create. Than I symlink those dependencies into another derivation and than build it from there. The problem is while I no longer need the nodeDependencies, it's still getting pulled when getting copied
<numkem> over to another machine. Is there way to remove all deps? I've tried setting propagatedBuildInputs = [] but it doesn't change anything
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #100357 → zegrapher: init at 3.1.1 → https://git.io/JTLzX
lsix has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @doronbehar merged pull request #100066 → kicad: add srcs parameter to allow configuring kicad versions → https://git.io/JTe4z
<{^_^}> [nixpkgs] @doronbehar pushed 7 commits to master: https://git.io/JTLzy
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
ManiacOfMadness has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @oxalica opened pull request #100358 → vscode-extensions.{matklad.rust-analyzer,vadimcn.vscode-lldb}: fix build error → https://git.io/JTLgD
is_null has quit [Ping timeout: 264 seconds]
bahamas has quit [Ping timeout: 260 seconds]
rprije has joined #nixos
<{^_^}> [nixpkgs] @oxalica opened pull request #100359 → rust-analyzer: 2020-10-05 -> 2020-10-12 → https://git.io/JTL2l
kaliumxyz has joined #nixos
<__monty__> Hmm, what could've caused this error? error: opening temporary roots file '/nix/var/nix/temproots/7548': Permission denied
<__monty__> Accidentally running nix-channel --update as root on a single-user install?
maxdevjs has joined #nixos
<pittma> I've just updated to the new thunderbird, and I'm hitting something like this https://github.com/NixOS/nixpkgs/issues/98765
<{^_^}> #98765 (by chpio, 2 weeks ago, open): thunderbrid@78: enable smartcard gpg support
<pittma> I've since installed gpgme, but it seems thunderbird can't find it.
<emmanuel_erc> simpson: So I realized that there is one particular derivation in question that is common to all my builds. One of the build-time deps that keeps finding it way into the acutal build is the GHC compiler (1.3 GB)
<pittma> Is there more to do to include libgpgme in LD_PATH?
<simpson> emmanuel_erc: Fun! At least you've narrowed it down somewhat.
thc202 has quit [Ping timeout: 240 seconds]
<emmanuel_erc> I'm going to read through this article to see if it helps me (https://nixos.org/guides/nix-pills/automatic-runtime-dependencies.html)
<{^_^}> [nixpkgs] @veprbl merged pull request #100083 → [20.09] arrow-cpp: 1.0.0 -> 1.0.1 → https://git.io/JTvcO
<{^_^}> [nixpkgs] @veprbl pushed 2 commits to release-20.09: https://git.io/JTLaK
<__monty__> emmanuel_erc: If you can, haskell.nix probably takes care of that particular problem with the nixpkgs haskell infra.
<__monty__> If you're packaging for inclusion in nixpkgs that's not an option of course.
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
<euank> I know that's how the nixpkgs go builder keeps the go compiler from being pulled in as a dep of go binaries. Not sure how the haskell builder does it
vidbina has quit [Ping timeout: 260 seconds]
<euank> or if that problem even is supposed to exist for haskell binaries
<__monty__> Until recently it was the case for pandoc, for example. So I think it's common or at least semi-common.
<clever> __monty__: does pandoc still function for you on master? i recently found problems where it blows the haskell heap, no matter how big you make it
<clever> it started when the default ghc updated a few months back
<emmanuel_erc> euank: How does this script actually work? I'm confused. Is there supposed to a list it references that keeps away non-runtime deps?
* clever heads off to bed
alp has quit [Ping timeout: 244 seconds]
lsix has joined #nixos
sangoma has quit [Quit: WeeChat 2.9]
knupfer has quit [Quit: knupfer]
<euank> there's a description of why/how pandoc uses it emmanuel_erc
knupfer has joined #nixos
knupfer has quit [Client Quit]
<euank> you give it a bunch of store paths you don't want, and it seds out those store path's hashes for 'eeeeee...' to remove the automatic runtime dep detectoin of them
knupfer has joined #nixos
lsix has quit [Client Quit]
<euank> And it's also probably a sign that the toolchain in question is doing something kinda weird.
<{^_^}> [nixos-homepage] @garbas pushed to redesign-governance « switch from flex to grid layout for teams section »: https://git.io/JTLVP
<euank> In the go case, it's that debug symbols referencing the go stdlib, including filesystem path, are stored in all binaries
knupfer has quit [Client Quit]
knupfer has joined #nixos
<euank> For haskell, I don't know why a reference to ghc would sneak into the final binary. It may be worth understanding that bit first before blindly replacing it with 'eee...' since there might be a better way to have the build output just not include that entirely
knupfer has quit [Client Quit]
knupfer1 has joined #nixos
knupfer1 has quit [Client Quit]
knupfer has joined #nixos
<emmanuel_erc> Yeah, that might be hard for me to figure if only because the entire infra for building my package in question is obelisk. Obelisk is a framework for web development in Haskell. So the entire app actually consists of three haskell projects (Haskell-wise)
<emmanuel_erc> How they string things together is slightly opaque.
<__monty__> clever: Haven't used it recently.
knupfer has quit [Client Quit]
knupfer has joined #nixos
cr4y1 has quit [Remote host closed the connection]
shibboleth has quit [Quit: shibboleth]
cr4y1 has joined #nixos
sputny has quit [Quit: sputny]
<{^_^}> [nixpkgs] @fadenb opened pull request #100360 → graylog: 3.3.7 -> 3.3.8 → https://git.io/JTLwE
cr4y1 has quit [Remote host closed the connection]
cr4y1 has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
<emmanuel_erc> so I've found something in common between the issue that Pandoc faced and mine
<emmanuel_erc> namely that there is a Paths module in my cabal file as well
<emmanuel_erc> For pandoc, including this module seems to pull in GHC too somehow.
m1cr0man has quit [Ping timeout: 258 seconds]
MmeQuignon has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #100038 → rust: 1.46.0 -> 1.47.0 → https://git.io/JUj2f
<{^_^}> [nixpkgs] @Ericson2314 pushed 2 commits to staging: https://git.io/JTLrU
BlessJah_ has joined #nixos
mallox has quit [Quit: WeeChat 2.9]
jabster28 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @fadenb opened pull request #100361 → [20.03] graylog: 3.3.7 -> 3.3.8 → https://git.io/JTLr6
<{^_^}> [nixpkgs] @fadenb opened pull request #100362 → [20.09] graylog: 3.3.7 -> 3.3.8 → https://git.io/JTLri
jabster28 has joined #nixos
zupo has quit [Ping timeout: 240 seconds]
mthst has quit [Ping timeout: 244 seconds]
BlessJah has joined #nixos
BlessJah_ has quit [Ping timeout: 258 seconds]
zupo has joined #nixos
mthst has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
<{^_^}> [nixpkgs] @Ma27 opened pull request #100363 → flake.nix: allow inclusion of `nixpkgs` as `path:/.../` → https://git.io/JTLoF
Pidgeotto has joined #nixos
grobi has joined #nixos
<{^_^}> [nixpkgs] @das-g opened pull request #100364 → [20.09] foundationdb: fix build for current glibc version → https://git.io/JTLop
<{^_^}> [nixos-homepage] @samueldr pushed 9 commits to redesign-community: https://git.io/JTLKl
m1cr0man has joined #nixos
spease has joined #nixos
<{^_^}> [nixos-homepage] @samueldr pushed to redesign-community « community.tt: Fix link and date for NixCon 2020 »: https://git.io/JTLKy
gustavderdrache has quit [Quit: Leaving.]
cosimone has quit [Ping timeout: 260 seconds]
noonien has quit [Quit: Connection closed for inactivity]
sigmundv has quit [Read error: Connection reset by peer]
nature has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @risicle opened pull request #100365 → [20.09] pythonPackages.poetry: 1.0.10 -> 1.1.1 → https://git.io/JTL69
sigmundv has joined #nixos
Rusty1 has quit [Quit: WeeChat 2.3]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oleks has joined #nixos
gustavderdrache has joined #nixos
pikajude has joined #nixos
jabster28 has quit [Read error: Connection reset by peer]
tldr32 has quit [Ping timeout: 272 seconds]
jabster28 has joined #nixos
tldr32 has joined #nixos
realrokka has joined #nixos
erasmas has quit [Quit: leaving]
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
<{^_^}> [nixpkgs] @flokli merged pull request #98917 → klipper: init at 0.8.0 → https://git.io/JUoSy
<{^_^}> [nixpkgs] @flokli pushed 3 commits to master: https://git.io/JTLPf
Ikositetrachor has quit [Ping timeout: 258 seconds]
Spiney has quit [Ping timeout: 246 seconds]
page has joined #nixos
is_null has joined #nixos
philr has joined #nixos
cr4y1 has quit [Ping timeout: 240 seconds]
is_null has quit [Ping timeout: 256 seconds]
bbb has joined #nixos
bbb has quit [Client Quit]
zupo has joined #nixos
mthst has quit [Remote host closed the connection]
mDuff has quit [Quit: zzz]
zupo has quit [Ping timeout: 260 seconds]
__monty__ has quit [Quit: leaving]
justanotheruser has joined #nixos
grobi has quit [Quit: WeeChat 2.8]
vandenoever has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #100116 → Pantheon fixups → https://git.io/JTfZg
<{^_^}> [nixpkgs] @worldofpeace pushed 5 commits to master: https://git.io/JTLPj
<{^_^}> [nixpkgs] @worldofpeace merged pull request #100224 → [20.09] Pantheon stuff → https://git.io/JTTCe
<{^_^}> [nixpkgs] @worldofpeace pushed 5 commits to release-20.09: https://git.io/JTLXt
<{^_^}> [nixpkgs] @marcus7070 opened pull request #100366 → python3Packages.spyder_3: remove broken gui app → https://git.io/JTLXu
<{^_^}> [nixpkgs] @WolfangAukang opened pull request #100367 → upwork: 5.3.3-883 -> 5.4.7.1 → https://git.io/JTLX5
aasg has quit [Quit: killed]
<{^_^}> [nixpkgs] @zowoq pushed to master « .github/workflows/editorconfig.yml: get-diff-action 3.1.0 -> 4.0.0 »: https://git.io/JTL1n
<{^_^}> [nixpkgs] @WolfangAukang closed pull request #100367 → upwork: 5.3.3-883 -> 5.4.7.1 → https://git.io/JTLX5
<{^_^}> [nixpkgs] @zowoq opened pull request #100368 → croc: 8.3.1 -> 8.5.0 → https://git.io/JTLMc
<{^_^}> [nixpkgs] @marsam merged pull request #99995 → fujprog: 4.6 -> 4.8 → https://git.io/JUh4o
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JTLMQ
ericsagnes has quit [Ping timeout: 244 seconds]
<emmanuel_erc> euank: So given what you showed about removing references, that seems to work really well, when the package in question is a dependency. However, what if it is the package/library that you are trying to build that has "Paths_<nameoflibrary>" as specified module in its cabal file?
Mateon2 has joined #nixos
<euank> emmanuel_erc: I'm well out of my depth in haskell knowledge here. I don't know what 'Paths_' modules are meant to be/do
<{^_^}> [nixpkgs] @WolfangAukang opened pull request #100369 → upwork: 5.3.3-883 -> 5.4.7.1 → https://git.io/JTLDf
Mateon2 is now known as Mateon1
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 272 seconds]
mbrgm_ is now known as mbrgm
<emmanuel_erc> You can use them to reference the version of the package you've just created.
<emmanuel_erc> No worries
<emmanuel_erc> Nevertheless, thank you for what you showed me earlier today.
ericsagnes has joined #nixos
ManiacOfMadness has joined #nixos
m0rphism has quit [Ping timeout: 260 seconds]
aasg has joined #nixos
cjpbirkb1 has joined #nixos
cjpbirkbeck has quit [Ping timeout: 246 seconds]
oxahexane has joined #nixos
marcy__ has joined #nixos
marcy_ has quit [Ping timeout: 272 seconds]
aasg has quit [Quit: killed]
aasg has joined #nixos