worldofpeace changed the topic of #nixos to: NixOS 20.09 Nightingale ✨ https://discourse.nixos.org/t/nixos-20-09-release/9668 || 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-inf
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118754 → libxkbcommon: 1.2.0 -> 1.2.1 → https://github.com/NixOS/nixpkgs/pull/118754
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/cbf39a8168b (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<edrex> cole-h: thanks!
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #117917 → md2gemini: init at 1.8.1 → https://github.com/NixOS/nixpkgs/pull/117917
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #117860 → pythonPackages.ronin: init at 1.1.1 → https://github.com/NixOS/nixpkgs/pull/117860
urkk has quit [Ping timeout: 240 seconds]
nitsky has joined #nixos
meh` has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #117917 → md2gemini: init at 1.8.1 → https://github.com/NixOS/nixpkgs/pull/117917
nitsky has quit [Client Quit]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118618 → viking: 1.8 → 1.9 → https://github.com/NixOS/nixpkgs/pull/118618
urkk has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115915 → pythonPackages.pywebview: 3.3.1 -> 3.4 → https://github.com/NixOS/nixpkgs/pull/115915
<eacameron> UnrealEngine comes with some prebuilt binaries it needs to run them during the build. I thought running patchelf on them would fix them, but it still says "Engine/Binaries/Linux/dump_syms: No such file or directory". ldd doesn't show any missing libs. What else should I try?
<simpson> TIL about https://github.com/sol1/backupninja but it seems somewhat defunct. I'm willing to package it, but is there a better option for "meta-backup" in nixpkgs already?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118636 → antsimulator: init at 1.2 → https://github.com/NixOS/nixpkgs/pull/118636
<clever> eacameron: what about the interpreter?
<gchristensen> simpson: meta backup?
<tpw_rules> dump_syms is a binary?
<tpw_rules> so maybe the binary would run fine but unrealengine can't find it?
jfroche has quit [Quit: Connection closed]
<clever> tpw_rules: if the interpreter on an ELF is missing, then executing it claims not found
hmi has quit [Ping timeout: 265 seconds]
<simpson> gchristensen: Their term. Rather than a single fixed backup incantation (e.g. rsync), it manages many different backup policies and tools.
proofofkeags_ has quit [Ping timeout: 260 seconds]
<tpw_rules> huh
<gchristensen> oh wow
<simpson> I also found https://github.com/zmanda/amanda (also not packaged). Basically, looking for alternatives to ye olde Bacula.
<gchristensen> this reminds me that I need to get zrepl going again
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118397 → qcad: 3.26.0.1 -> 3.26.1.0 → https://github.com/NixOS/nixpkgs/pull/118397
<simpson> Sure. In my particular case, I want to run a backup to both a disk and also a "tape" (SD card), and I know the dangers of writing a short shell script to automate that. Backups tend to break so easily if not tested.
<gchristensen> yup.
<gchristensen> nothing scarier than "I wrote a backup tool"
oida has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118596 → rebar3: 3.14.2 -> 3.14.4 → https://github.com/NixOS/nixpkgs/pull/118596
cole-h has quit [Ping timeout: 240 seconds]
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @austinbutler opened pull request #118771 → python3Packages.awslambdaric: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/118771
stree has quit [Ping timeout: 260 seconds]
<eacameron> clever: file Engine/Binaries/Linux/dump_syms
<eacameron> Engine/Binaries/Linux/dump_syms: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, BuildID[sha1]=2828a48b5e397c3dece1e3dfa1c481808953cb41, with debug_info, not stripped
<eacameron> clever: I suppose that would be it then. How do I fix this?
<clever> eacameron: patchelf
<eacameron> clever: that's what I already ran: patchelf Engine/Binaries/Linux/dump_syms
<clever> $ patchelf --help
<clever> syntax: patchelf [--set-interpreter FILENAME]
<clever> eacameron: you have to tell it what to patch
<clever> patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath ....
<eacameron> clever: oh 😊
<eacameron> what does --set-rpath do
<clever> eacameron: sets the rpath, so ldd can find libs
<eacameron> ldd on that binary seems to report all /nix/store paths
<clever> then you can omit the --set-rpath
<edrex> Wondering why the system OS/arch is included when installing the agenix cli. isn't that normally implied? https://github.com/ryantm/agenix#cli
<eacameron> clever: yes that makes it runnable!
<eacameron> Can you demystify "$(cat $NIX_CC/nix-support/dynamic-linker)" a bit for me? 😊
<clever> run `echo $NIX_CC` and `ls -l $NIX_CC/nix-support/dynamic-linker` and `cat $NIX_CC/nix-support/dynamic-linker`
stree has joined #nixos
<eacameron> clever: I see! And this is just part of stdenv?
<eacameron> (The fact that $NIX_CC is defined, etc)
<clever> $NIX_CC only happens if gcc was in your buildInputs
<clever> the default stdenv has that
<eacameron> Ah I see.
<clever> but stdenvNoCC wont
<eacameron> Thank you :D
<eacameron> clever: I'm in over my head a bit but trying to fix ue4 build. It's a bit convoluted.
nonchris7 has joined #nixos
nonchris has quit [Ping timeout: 246 seconds]
nonchris7 is now known as nonchris
<{^_^}> [nixpkgs] @peterhoeg opened pull request #118772 → lcdproc: do not show the GPL on every start → https://github.com/NixOS/nixpkgs/pull/118772
<eacameron> Ok another question: I'm trying to do nix-shell -A ue4 to make it easier to develop this. Things *seem* to be properly configured in the shell (like my custom env vars) but when I run `unpackPhase` it fails. `type unpackPhase` shows that my unpack script is clearly not defined here. Did I do something wrong? It knows how to unpack properly when doing nix-build.
<clever> eacameron: genericBuild will dynamically switch between evaluating $unpackPhase (an env var containing shell code) and running unpackPhase (a bash function by the same name)
<clever> eacameron: your not doing that switching, so your always getting the bash function
Jackneill has quit [Ping timeout: 240 seconds]
<clever> eacameron: you can also just run: phases="unpackPhase patchPhase configurePhase buildPhase" genericBuild
<eacameron> clever: Ah thank you! So if I want to just do one phase at a time I can use phases="..." and pick which one I'm ready for?
<eacameron> (Apparently the answer is yes :)
<clever> yep
<{^_^}> [nixpkgs] @peterhoeg opened pull request #118773 → document packagekit changes → https://github.com/NixOS/nixpkgs/pull/118773
rajivr has joined #nixos
lunik1 has quit [Ping timeout: 240 seconds]
lunik19 has joined #nixos
ahmed_elgabri has quit [Ping timeout: 250 seconds]
ddellaco_ has joined #nixos
Jackneill has joined #nixos
superherointj has quit [Quit: Leaving]
oida has joined #nixos
trcm has quit [Remote host closed the connection]
ddellaco_ has quit [Ping timeout: 268 seconds]
orivej has joined #nixos
trcm has joined #nixos
liuyb has quit [Ping timeout: 240 seconds]
lsix has quit [Ping timeout: 258 seconds]
h0m2 has quit [Ping timeout: 260 seconds]
zebrag has quit [Quit: Konversation terminated!]
h0m2 has joined #nixos
iceypoi has quit [Ping timeout: 258 seconds]
iceypoi has joined #nixos
tomberek has joined #nixos
patagonicus1 has joined #nixos
ahmed_elgabri has joined #nixos
liuyb has joined #nixos
patagonicus has quit [Ping timeout: 252 seconds]
patagonicus1 is now known as patagonicus
ahmed_elgabri has quit [Ping timeout: 250 seconds]
<{^_^}> [patchelf] @0xling opened pull request #270 → fixed PT_PHDR bug → https://github.com/NixOS/patchelf/pull/270
<{^_^}> [nixpkgs] @marsam merged pull request #118684 → ruby_3_0: 3.0.0 -> 3.0.1 → https://github.com/NixOS/nixpkgs/pull/118684
<tomberek> thoughts on 112928?
ebn has quit [Ping timeout: 240 seconds]
<hexa-> #112928
<{^_^}> https://github.com/NixOS/nixpkgs/pull/112928 (by baloo, 7 weeks ago, open): stdenv: provide a deterministically built gcc
<hexa-> no
ahmed_elgabri has joined #nixos
<tomberek> what would be remaining? Or is the perf hit too much?
ahmed_elgabri has quit [Ping timeout: 260 seconds]
ajs124 has quit [Quit: Bridge terminating on SIGTERM]
mrpi has quit [Quit: Bridge terminating on SIGTERM]
cheriimoya has quit [Quit: Bridge terminating on SIGTERM]
Scriptkiddi has quit [Quit: Bridge terminating on SIGTERM]
das_j has quit [Quit: Bridge terminating on SIGTERM]
dotdotok has quit [Ping timeout: 260 seconds]
cheriimoya has joined #nixos
das_j has joined #nixos
ajs124 has joined #nixos
mrpi has joined #nixos
Scriptkiddi has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #118774 → ruby: 2.6.6 -> 2.6.7, 2.7.2 -> 2.7.3 → https://github.com/NixOS/nixpkgs/pull/118774
<pie_> anyone know offhand where networkd puts its files on nixos?
<abathur> tomberek: not that I like adding to his pile, but gchristensen may have some perspective on the relative values of performance/reproducibility
<tomberek> that's fine, it would be good to know where people draw the line and how they weigh the pros/cons
<clever> pie_: does it have a systemd service? what does the .service file say?
<pie_> clever: i dont even know if its running, im just poking at containers and trying tolearn more networking stuff
<pie_> clever: but networkctl says no links are managed afaict
<clever> pie_: check /etc/systemd/system/ ?
<DavHau[m]> matthewcroughan There is no freenode channel for mach-nix. Feel free to create one.
<DavHau[m]> For inserting non-python packages into your env, use the 'packagesExtra' argument. See readme for more details.
<pie_> clever: idek what im looking for
<pie_> clever: sorry, brain fog:
<clever> pie_: anything with networkd in the name
<pie_> only /etc/systemd/system/virtnetworkd.service and some sockets for it
hiroshi[m] has joined #nixos
<pie_> maybe im not even running networks
<pie_> *networkd
<pie_> (though that doesnt necessarily imply there would be no configs
* pie_ looks in his containers
jesystani has joined #nixos
<pie_> it still blows my mind that such complex tools dont have visible built in functionality for figuring out where the hell they keep their configs (or otherwise)
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #117856 → nodepy-runtime: init at 1.7.3; pythonPackages.localimport: init at 1.7.3 → https://github.com/NixOS/nixpkgs/pull/117856
<DavHau[m]> > <@hsngrmpf:matrix.org> matthewcroughan There is no freenode channel for mach-nix. Feel free to create one.
<DavHau[m]> > For inserting non-python packages into your env, use the 'packagesExtra' argument. See readme for more details.
<DavHau[m]> matthewcroughan Oops i just noticed the readme is outdated.
<{^_^}> error: syntax error, unexpected '<', at (string):494:1
<{^_^}> error: syntax error, unexpected ',', expecting ')', at (string):494:48
<remexre> is there a quick-hack way to get a derivation with static libraries?
<clever> remexre: pkgsStatic
<remexre> thanks!
Dr8128 has quit [Ping timeout: 240 seconds]
<clever> > pkgsStatic.hello
<{^_^}> "<derivation /nix/store/n1kali73w753qzm0dsa0xq8j52xz8kpa-hello-2.10-x86_64-unknown-linux-musl.drv>"
<pie_> looks like theres some default .network files in the systemd derivations
lawt has quit [Read error: Connection reset by peer]
proofofkeags_ has joined #nixos
lawt has joined #nixos
ahmed_elgabri has joined #nixos
nwm has joined #nixos
<nwm> are there any docs on nfsroot nixos?
ahmed_elgabri has quit [Ping timeout: 248 seconds]
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
aw has joined #nixos
spacefrogg has joined #nixos
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
AlpineLlama has joined #nixos
mmmattyx has quit [Quit: Connection closed for inactivity]
<colemickens> nwm: don't know about docs, but I had a rpi4 netbooting and using nfsroot
xlei has quit [Read error: Connection reset by peer]
stree has quit [Ping timeout: 240 seconds]
nonchris has quit [Read error: Connection reset by peer]
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/d6f63659a70 (from 18 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
stree has joined #nixos
ManiacOfMadness has quit [Ping timeout: 248 seconds]
waleee-cl has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @bhipple merged pull request #117354 → mkl: 2020.3.304 -> 2021.1.1.52 → https://github.com/NixOS/nixpkgs/pull/117354
Supersonic112 has joined #nixos
Supersonic has quit [Ping timeout: 260 seconds]
Supersonic112 is now known as Supersonic
justanotheruser has joined #nixos
evanjs has quit [Ping timeout: 240 seconds]
maljub01 has quit [Quit: maljub01]
evanjs has joined #nixos
maljub01 has joined #nixos
<{^_^}> [nixpkgs] @lopsided98 opened pull request #118775 → qgroundcontrol: 4.1.1 -> 4.1.2 → https://github.com/NixOS/nixpkgs/pull/118775
jmeredith has quit [Quit: Connection closed for inactivity]
nrh^ has quit [Ping timeout: 248 seconds]
nrh^ has joined #nixos
marusich has joined #nixos
oida has quit [Remote host closed the connection]
oida has joined #nixos
cjb has quit []
nrh^ has quit [Ping timeout: 260 seconds]
nrh^ has joined #nixos
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
rail has quit [Quit: gone...]
zie has quit [Quit: ZNC 1.8.1 - https://znc.in]
terinjokes has quit [Quit: ZNC 1.8.1 - https://znc.in]
zie has joined #nixos
rail has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #118776 → codeowners: add marsam to Ruby and PostgreSQL → https://github.com/NixOS/nixpkgs/pull/118776
terinjokes has joined #nixos
ahmed_elgabri has joined #nixos
ahmed_elgabri has quit [Ping timeout: 258 seconds]
<nerdypepper> `nix run -- args` results in "error: cannot find flake ..."
<nerdypepper> however, `nix run . -- args` successfully passes args down to the binary
<nerdypepper> is this expected behaviour or a bug?
marusich has quit [Ping timeout: 246 seconds]
tomberek has quit [Ping timeout: 240 seconds]
Gaelan has quit [Quit: ZNC 1.8.2 - https://znc.in]
Gaelan has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #118777 → nodejs: 10.24.0 -> 10.24.1, 12.22.0 -> 12.22.1, 14.16.0 -> 14.16.1 → https://github.com/NixOS/nixpkgs/pull/118777
<remexre> when packaging a self-hosting language, is it traditional to keep the three-stage bootstrap?
<simpson> Yes. IIRC there's a section on cross-compiling in the manual which talks about this.
<{^_^}> [nixpkgs] @vbgl opened pull request #118778 → ocamlPackages.safepass: 3.0 → 3.1 → https://github.com/NixOS/nixpkgs/pull/118778
Heirlung has quit [Ping timeout: 265 seconds]
tejing has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @marsam opened pull request #118779 → python38Packages.internetarchive: 1.9.9 -> 2.0.2 → https://github.com/NixOS/nixpkgs/pull/118779
Heirlung has joined #nixos
trcm has quit [Remote host closed the connection]
<simpson> I'm packaging a collection of binaries. Some binaries are conditionally setuid, and I disabled them. Some other binaries have an unconditional INSTALLPERMS_exec in Makefile.am. Is there a way to cleanly fix this, or do I need to sed Makefile.am?
veryepicusername has joined #nixos
<veryepicusername> whats up guys
<veryepicusername> eeeeeeeee
stree has quit [Ping timeout: 240 seconds]
<simpson> Evening.
<edrex> I've got secrets management working with agenix :)
palo1 has joined #nixos
<edrex> Now I'm wondering if there is any work on automatically generating host-local secrets (db passwords etc)
<edrex> if they're used for encrypting data or anything then I'd want to make sure they
<edrex> 're backed up somewhere, but if it's just a local access token..
endformationage has quit [Ping timeout: 260 seconds]
<edrex> hmm, maybe this isn't worth looking at. postgres doesn't need db pass for local users...
<edrex> yeah, nm
palo has quit [Ping timeout: 240 seconds]
palo1 is now known as palo
<edrex> i might have a go at adding password generation to the agenix cli tho
stree has joined #nixos
<{^_^}> [nixpkgs] @orivej-nixos pushed commit from @orivej to master « libcap: fix static build »: https://git.io/JYxzC
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
ddellaco_ has joined #nixos
cfricke has joined #nixos
cole-h has joined #nixos
<{^_^}> [nixpkgs] @orivej-nixos pushed commit from @orivej to master « x264: fix static build »: https://git.io/JYxgW
mallox has joined #nixos
urkk has quit [Ping timeout: 240 seconds]
ddellaco_ has quit [Ping timeout: 240 seconds]
urkk has joined #nixos
vidbina has joined #nixos
n-osborne has quit [Remote host closed the connection]
<eyJhb> Another day, another time trying to update LaTeX.
<eyJhb> (texlive)
sangoma has joined #nixos
bitmapper has quit [Quit: Connection closed for inactivity]
domogled has joined #nixos
<{^_^}> [nixpkgs] @Munksgaard opened pull request #118780 → sway: 1.5.1 -> 1.6.0 → https://github.com/NixOS/nixpkgs/pull/118780
ahmed_elgabri has joined #nixos
BenjiProd has joined #nixos
ml| has quit [Ping timeout: 265 seconds]
ahmed_elgabri has quit [Ping timeout: 260 seconds]
graf_blutwurst has joined #nixos
<{^_^}> [nixpkgs] @drodriguez opened pull request #118781 → cmake: Fix Darwin SDK module → https://github.com/NixOS/nixpkgs/pull/118781
sangoma has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @eonpatapon opened pull request #118782 → cue: 0.2.2 -> 0.3.0 → https://github.com/NixOS/nixpkgs/pull/118782
ahmed_elgabri has joined #nixos
ml| has joined #nixos
sangoma has joined #nixos
n-osborne has joined #nixos
respawn_ has joined #nixos
ml| has quit [Ping timeout: 268 seconds]
avaq has joined #nixos
confusus has joined #nixos
civodul has joined #nixos
aaabbbbbbbbbb has joined #nixos
srk has joined #nixos
ramses[m] has joined #nixos
ml| has joined #nixos
nwm has quit [Quit: Leaving]
saschagrunert has joined #nixos
<{^_^}> [nixpkgs] @Munksgaard closed pull request #118780 → sway: 1.5.1 -> 1.6.0 → https://github.com/NixOS/nixpkgs/pull/118780
saschagrunert has quit [Remote host closed the connection]
BenjiProd has quit [Remote host closed the connection]
zupo has joined #nixos
lsix has joined #nixos
saschagrunert has joined #nixos
<{^_^}> [nixos-hardware] @ehmry pushed to mnt-reform2-nitrogen8m « Add mnt-reform2-nitrogen8m »: https://git.io/JYxPX
ml| has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @jonringer closed pull request #96552 → gnvim: add librsvg → https://github.com/NixOS/nixpkgs/pull/96552
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117462 → gradle: Add 7-rc-2, leave latest pointing at 6.8 → https://github.com/NixOS/nixpkgs/pull/117462
nbren12_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @hjones2199 opened pull request #118783 → [staging] libvpx: 1.9.0 -> 1.10.0 → https://github.com/NixOS/nixpkgs/pull/118783
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mkDoku has joined #nixos
n-osborne has quit [Remote host closed the connection]
ml| has joined #nixos
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
ml| has quit [Ping timeout: 265 seconds]
jimmiehansson has joined #nixos
ahmed_elgabri has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118763 → yaru-theme: 20.10.6.1 -> 21.04.1 → https://github.com/NixOS/nixpkgs/pull/118763
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118762 → linux_xanmod: 5.11.10 -> 5.11.12 → https://github.com/NixOS/nixpkgs/pull/118762
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #103816 → vendor-reset: init at unstable-2021-02-16 → https://github.com/NixOS/nixpkgs/pull/103816
lsix has quit [Ping timeout: 260 seconds]
stree has quit [Quit: Caught exception]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #118785 → kube3d: correct the k3sVersion to be inline with upstream → https://github.com/NixOS/nixpkgs/pull/118785
stree has joined #nixos
jonringer has quit [Ping timeout: 258 seconds]
ml| has joined #nixos
isHavvyGhosting has joined #nixos
mallox has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118782 → cue: 0.2.2 -> 0.3.0 → https://github.com/NixOS/nixpkgs/pull/118782
lsix has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118779 → python38Packages.internetarchive: 1.9.9 -> 2.0.2 → https://github.com/NixOS/nixpkgs/pull/118779
<{^_^}> [nixpkgs] @petabyteboy pushed to master « gitlab: add back GITLAB_WORKHORSE_VERSION »: https://git.io/JYxS7
isHavvy has quit [Ping timeout: 276 seconds]
ml| has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118775 → qgroundcontrol: 4.1.1 -> 4.1.2 → https://github.com/NixOS/nixpkgs/pull/118775
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #118781 → cmake: Fix Darwin SDK module → https://github.com/NixOS/nixpkgs/pull/118781
<{^_^}> [nixpkgs] @lovek323 opened pull request #118786 → plex: 1.22.1.4275 -> 1.22.2.4284 → https://github.com/NixOS/nixpkgs/pull/118786
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #118781 → cmake: Fix Darwin SDK module → https://github.com/NixOS/nixpkgs/pull/118781
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118785 → kube3d: correct the k3sVersion to be inline with upstream → https://github.com/NixOS/nixpkgs/pull/118785
<{^_^}> [nixpkgs] @fabaff opened pull request #118787 → python3Packages.xknx: 0.17.5 -> 0.18.0 → https://github.com/NixOS/nixpkgs/pull/118787
hopheynananey has joined #nixos
cole-h has quit [Ping timeout: 252 seconds]
supersandro2000 has quit [Remote host closed the connection]
supersandro2000 has joined #nixos
<{^_^}> [nixpkgs] @kraem opened pull request #118788 → go_1_15: 1.15.10 -> 1.15.11 → https://github.com/NixOS/nixpkgs/pull/118788
vidbina has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @orivej opened pull request #118789 → x264: flatten configureFlags → https://github.com/NixOS/nixpkgs/pull/118789
<eyJhb> Anyone that has some npm/yarn knowledge? Trying to package https://kolaente.dev/vikunja/frontend , where I want to run yarn install, and then yarn run build. But atm. mkYarnPackage will run build before install, which I think will give a error in the form of the "vendor" folder not having been created
ml| has joined #nixos
respawn_ has quit [Quit: Leaving]
stree has quit [Quit: Caught exception]
stree has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #118790 → python3Packages.pysmappee: 0.2.18 -> 0.2.23 → https://github.com/NixOS/nixpkgs/pull/118790
ml| has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #118791 → python3Packages.pymazda: 0.0.10 -> 0.1.1 → https://github.com/NixOS/nixpkgs/pull/118791
Synthetica has joined #nixos
<eyJhb> evanjs: did you ever get this to work? https://logs.nix.samueldr.com/nixos-chat/2020-10-25#4152166;
<Synthetica> Did NixOS stop listing generations in the boot menu (systemd-boot) on purpose? It only says "NixOS" now instead of "NixOS generation foo"
<ar> Synthetica: is this your first/only generation?
<Synthetica> Synthetica: definitely not the first, maybe the only if the rest have been garbage collected?
<Synthetica> Wait, let me check
<Synthetica> Okay, there are two generations but they both have the title NixOS
ml| has joined #nixos
<Synthetica> I'll reboot and see if I have the choice now
<Synthetica> Oh, hmm, it only lists generation numbers if there are multiple, TIL
thc202 has joined #nixos
ml| has quit [Ping timeout: 260 seconds]
lordcirth_ has quit [Remote host closed the connection]
meh` has joined #nixos
lordcirth_ has joined #nixos
<{^_^}> [nixpkgs] @jlesquembre closed pull request #115248 → tree-sitter: no longer broken on aarch64 → https://github.com/NixOS/nixpkgs/pull/115248
L0u1sChu has joined #nixos
<{^_^}> [nixpkgs] @Riey opened pull request #118792 → linuxPackages.rtl88x2bu: 2020-08-20 -> 2020-01-21 → https://github.com/NixOS/nixpkgs/pull/118792
<{^_^}> [nixpkgs] @petabyteboy merged pull request #117277 → build-rust-crate: disable incremental build → https://github.com/NixOS/nixpkgs/pull/117277
ahmedelgabri has quit [Ping timeout: 248 seconds]
<{^_^}> [nixpkgs] @lsix opened pull request #118793 → [staging-20.09] python3Packages.django_2: 2.2.19 -> 2.2.20 → https://github.com/NixOS/nixpkgs/pull/118793
ml| has joined #nixos
nschoe has joined #nixos
ml| has quit [Ping timeout: 240 seconds]
arahael1 is now known as Arahael
vidbina has joined #nixos
nrdxp[m] has quit [Quit: Idle for 30+ days]
wallacer has quit [Quit: No Ping reply in 180 seconds.]
<{^_^}> [nixpkgs] @karolchmist opened pull request #118794 → devilutionx: unstable-2020-10-20 -> 1.2.0 → https://github.com/NixOS/nixpkgs/pull/118794
avaq has quit [Ping timeout: 246 seconds]
wallacer has joined #nixos
n00ber has joined #nixos
ml| has joined #nixos
n00ber has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @veprbl merged pull request #118789 → x264: flatten configureFlags → https://github.com/NixOS/nixpkgs/pull/118789
ml| has quit [Ping timeout: 240 seconds]
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118774 → ruby: 2.6.6 -> 2.6.7, 2.7.2 -> 2.7.3 → https://github.com/NixOS/nixpkgs/pull/118774
ahmedelgabri has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118454 → hdf5: make possible to use the v1.10 API → https://github.com/NixOS/nixpkgs/pull/118454
<supersandro2000> ^ hexa- das sollte pandas und home-assistant auf staging fixen
dotdotok has joined #nixos
ericsagn1 has quit [Ping timeout: 260 seconds]
IRCsum has quit [Remote host closed the connection]
ml| has joined #nixos
<{^_^}> [nixpkgs] @veprbl opened pull request #118795 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118795
IRCsum has joined #nixos
rembo10 has quit [Quit: ZNC 1.8.2 - https://znc.in]
<Izorkin> stevenroose: can create separate PR? Here you just add a package, and for the service - create a new PR?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118794 → devilutionx: unstable-2020-10-20 -> 1.2.0 → https://github.com/NixOS/nixpkgs/pull/118794
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118725 → yubikey-manager: 3.1.2 -> 4.0.1 → https://github.com/NixOS/nixpkgs/pull/118725
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118739 → gitkraken: 7.5.3 -> 7.5.4 → https://github.com/NixOS/nixpkgs/pull/118739
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118765 → python3Packages.wakeonlan: 1.1.6 -> 2.0.0 → https://github.com/NixOS/nixpkgs/pull/118765
ml| has quit [Ping timeout: 248 seconds]
rembo10 has joined #nixos
eacameron has quit [Quit: Connection closed for inactivity]
fendor has joined #nixos
johannes_ has joined #nixos
johannes_ is now known as kenran
<kenran> Where can I find out about the black magic seems to be happening when "dev" is specified in the list of outputs of a derivation? I've looked at oracle-instantclient, and in installPhase, there is mkdir -p $out/include, but when nix-building the expression, the include dir lands in -dev, not in the default out directory. When removing "dev", it works as I'd have expected.
<stevenroose> Izorkin: yeah that's also an idea I had. I think I will do that
<kenran> Another output is "lib", which doesn't seem to have special handling.
ahmedelgabri has quit [Ping timeout: 250 seconds]
<Izorkin> stevenroose: and update packages to 3.1.0 :)
<kenran> That is, there is $lib/lib created and used, and that lands in the -lib store output as expected. So "dev" seems to be some very special keyword wrt directories named "include"?
ericsagn1 has joined #nixos
<clever> kenran: $lib is for libraries loaded at runtime, $dev is for headers and static libraries only used at build-time, $bin or $out for the binaries you may not need
avaq has joined #nixos
lawt has quit [Ping timeout: 260 seconds]
fuiltilt has quit [Quit: WeeChat 2.9]
<stevenroose> Izorkin: let's see how that goes :D
<kenran> clever: I thought so. Why is it necessary to use $lib in the install script, but put the "include" dir in $out and it is moved automatically?
<clever> kenran: add preConfigure = "set -x"; to the derivation, there is probably a hook to move things
<{^_^}> [nixpkgs] @Riey opened pull request #118796 → cargo-feature: init at 0.5.2 → https://github.com/NixOS/nixpkgs/pull/118796
<kenran> clever: cool, thanks!
tejing has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118790 → python3Packages.pysmappee: 0.2.18 -> 0.2.23 → https://github.com/NixOS/nixpkgs/pull/118790
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118788 → go_1_15: 1.15.10 -> 1.15.11 → https://github.com/NixOS/nixpkgs/pull/118788
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118787 → python3Packages.xknx: 0.17.5 -> 0.18.0 → https://github.com/NixOS/nixpkgs/pull/118787
ml| has joined #nixos
__monty__ has joined #nixos
ml| has quit [Ping timeout: 240 seconds]
<eyJhb> When I try to add @vue/cli-service ( https://github.com/vuejs/vue-cli/blob/dev/packages/%40vue/cli-service/package.json ) I get `Cannot resolve version: vue-loader-v16@undefined` when I try to generate the packages for it
<eyJhb> Any ideas as to why?
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/ff5ff66ef3c (from 66 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #118797 → topgrade: 6.7.0 -> 6.8.0 → https://github.com/NixOS/nixpkgs/pull/118797
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118793 → [staging-20.09] python3Packages.django_2: 2.2.19 -> 2.2.20 → https://github.com/NixOS/nixpkgs/pull/118793
<{^_^}> [nixpkgs] @OPNA2608 opened pull request #118798 → palemoon: 29.1.0 -> 29.1.1 → https://github.com/NixOS/nixpkgs/pull/118798
L0u1sChu has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
L0u1sChu has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118796 → cargo-feature: init at 0.5.2 → https://github.com/NixOS/nixpkgs/pull/118796
ml| has joined #nixos
L0u1sChu has quit [Quit: Textual IRC Client: www.textualapp.com]
L0u1sChu has joined #nixos
elibrokeit has quit [Ping timeout: 240 seconds]
ml| has quit [Ping timeout: 240 seconds]
elibrokeit has joined #nixos
<jboy> immae: I'm trying to use the etherpad-lite module from your NUR repo, but I keep getting this error when I try to import it: "NUR import call didn't receive a pkgs argument, but the evaluation of NUR's immae repository requires it."
<jboy> any idea what may be going on there?
zebrag has joined #nixos
<{^_^}> [nixpkgs] @ymatsiuk opened pull request #118800 → Xdgteleport → https://github.com/NixOS/nixpkgs/pull/118800
stree has quit [Ping timeout: 265 seconds]
ml| has joined #nixos
ml| has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @balsoft merged pull request #118595 → erlangR23: 23.2.6 -> 23.3.1 → https://github.com/NixOS/nixpkgs/pull/118595
<yaymukund> does anyone know how far back logs go for this channel?
n-osborne has quit [Remote host closed the connection]
<yaymukund> oh, pretty far back. nm
<{^_^}> [nixpkgs] @Mic92 merged pull request #118041 → cutter: 1.12.0 -> 2.0.0 → https://github.com/NixOS/nixpkgs/pull/118041
<immae> jboy: I guess it’s more a question for #nixos-nur maybe?
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JYpL3
stree has joined #nixos
<immae> (I don’t know what different I’m doing in my expression)
<jboy> immae: thanks, wasn't aware of the separate channel
<avn> Folks! I have a little question. I need write a script, which will walk all flakes referenced from flake.nix (recursively), and collect some metadata from source repos. What easy way to find downloaded sources in store?
seanparsons has quit [Quit: ZNC 1.8.1 - https://znc.in]
seanparsons has joined #nixos
nschoe has quit [Ping timeout: 260 seconds]
ml| has joined #nixos
ml| has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Mic92 closed pull request #109305 → rizin: init at unstable-2021-01-13 → https://github.com/NixOS/nixpkgs/pull/109305
n-osborne has joined #nixos
ml| has joined #nixos
<{^_^}> [nixpkgs] @Mic92 opened pull request #118801 → K3s: improve zfs/docker support → https://github.com/NixOS/nixpkgs/pull/118801
ml| has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @veprbl merged pull request #118800 → Xdgteleport → https://github.com/NixOS/nixpkgs/pull/118800
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #118795 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118795
ahmedelgabri has joined #nixos
fendor has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #118803 → Radare cleanup → https://github.com/NixOS/nixpkgs/pull/118803
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118797 → topgrade: 6.7.0 -> 6.8.0 → https://github.com/NixOS/nixpkgs/pull/118797
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118786 → plex: 1.22.1.4275 -> 1.22.2.4284 → https://github.com/NixOS/nixpkgs/pull/118786
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118771 → python3Packages.awslambdaric: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/118771
<{^_^}> [nixpkgs] @veprbl reopened pull request #118795 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118795
vidbina has quit [Ping timeout: 240 seconds]
respawn_ has joined #nixos
wallacer has quit [Quit: No Ping reply in 180 seconds.]
tejing has quit [Quit: WeeChat 2.9]
wallacer has joined #nixos
palo has quit [Ping timeout: 268 seconds]
zupo has joined #nixos
avaq has quit [Ping timeout: 240 seconds]
zupo has quit [Client Quit]
justanotheruser has quit [Ping timeout: 248 seconds]
hyper_ch5 has joined #nixos
hyper_ch4 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @ajs124 opened pull request #118805 → treewide: fix eval without aliases after 9378fdf87e0626e8c63a90a378c3… → https://github.com/NixOS/nixpkgs/pull/118805
kenran has quit [Quit: leaving]
ml| has joined #nixos
nschoe has joined #nixos
rprije has quit [Ping timeout: 248 seconds]
ml| has quit [Ping timeout: 246 seconds]
<dotdotok> continuation of the saga the kind boi srhb was helping me with; after updating my nix to 2.4preX I still cant find included programs when I use the `nix shell` command; i.e. `nix shell nixpkgs#neofetch` followed by `neofetch` in the new shell results in `zsh: command not found: neofetch`. HOWEVER, interestingly, if I run `nix shell nixpkgs#neofetch --command neofetch` it _does_ work. So for some reason my shell that I would normally get
<dotdotok> put into doesn't seem to be "updated" with whatever the new packages are
<gchristensen> (note that srhb is a woman :))
fendor has joined #nixos
<dotdotok> i consider 'boi' gender neutral mas o menos, but information registered
<srhb> dotdotok: My main suspicion right now is that the shell is actually failing to launch and not giving a proper error message -- maybe you can simply confirm that with `exit`
<srhb> Hm, actually that should give a proper warning.
<srhb> So maybe some $SHELL initialization is clearing PATH. Check its value?
<dotdotok> srhb: so, coincidentally, when i run `nix shell nixpkgs#neofetch --command bash` and _then_ run `neofetch` it _does_ work
<dotdotok> mmm poss
<srhb> What's your $SHELL?
<dotdotok> `/usr/bin/zsh`
<srhb> Then I suspect your zsh initialization is clearing $PATH.
<marek> is there a way to use niv with private repo (using git protocol) with branches?
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @ymatsiuk closed pull request #118678 → nixos/appgate-sdp: make package configurable → https://github.com/NixOS/nixpkgs/pull/118678
avaq has joined #nixos
<gchristensen> dotdotok: I sent you a PM :)
<marek> sterni: I hoped using git :)
<sterni> uhh does git not support the netrc thing?
ml| has joined #nixos
<marek> sterni: I heam git over ssh but pointing to a specific branch
<marek> sterni: it does work with git@github.com:my_user/my_private_repo, but only for master
<sterni> can't you just specify the ref?
<marek> sterni: I tried, but it did not pull :/
<sterni> or an appropriate revision for that matter
<sterni> ah yeah idk about the niv update mechanism
ml| has quit [Ping timeout: 265 seconds]
<dotdotok> srhb: would make sense, perhaps related > https://github.com/NixOS/nixpkgs/issues/20548
<{^_^}> #20548 (by ToxicFrog, 4 years ago, open): zsh does not source set-environment when run as a non-login shell
Kritnich has quit [Quit: Ping timeout (120 seconds)]
Kritnich has joined #nixos
<dotdotok> though this feels more nixos specific pos
azazel has quit [Quit: bye]
nrh^ has quit []
azazel has joined #nixos
<srhb> dotdotok Not sure actually. :P I always have to read a bunch of man pages to figure out the entire initialization sequence of all shells. So many files sourced conditionally.
aszlig has quit [Ping timeout: 246 seconds]
aszlig has joined #nixos
palo has joined #nixos
Qwerky has joined #nixos
<dotdotok> srhb: yea, im sure its gotta be resetting it somewhere (or, rather, i should perhaps add some path to nix binaries to my $PATH in my own `.zshenv` file, but i dont think thats a thing considering everything in the store has a separate `bin` folder)
<srhb> dotdotok: I think it basically must be _cleared_ (as opposed to appended) because I assume that normally it would inherit the env var from the `nix shell` command. :)
<gchristensen> dotdotok: just checking, did you see my PM?
* dotdotok puts thumb up
<gchristensen> thanks
ml| has joined #nixos
vidbina has joined #nixos
dsrt^ has joined #nixos
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117917 → md2gemini: init at 1.8.1 → https://github.com/NixOS/nixpkgs/pull/117917
<{^_^}> [nixpkgs] @OPNA2608 opened pull request #118807 → foxotron: init at 2021-03-12 → https://github.com/NixOS/nixpkgs/pull/118807
rubm has quit [Ping timeout: 248 seconds]
<dotdotok> srhb: will need to look more into it later, commute calls, tys
<srhb> dotdotok: Have fun :)
dotdotok has quit [Read error: Connection reset by peer]
dotdotok has joined #nixos
<{^_^}> [nixpkgs] @talyz merged pull request #116074 → discourse: Add package and NixOS module → https://github.com/NixOS/nixpkgs/pull/116074
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118805 → treewide: fix eval without aliases after 9378fdf87e0626e8c63a90a378c3… → https://github.com/NixOS/nixpkgs/pull/118805
astylian_ has joined #nixos
waleee-cl has joined #nixos
astylian has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116651 → blucontrol-wrapper: init → https://github.com/NixOS/nixpkgs/pull/116651
berberman has quit [Ping timeout: 248 seconds]
berberman_ has joined #nixos
dotdotok has quit [Ping timeout: 240 seconds]
stevenroose has quit [Remote host closed the connection]
stevenroose has joined #nixos
<siers> how do I make my yourkit profiler see libz.so.1? it comes with a java binary and I'm inside of the shell that has zlib as buildInputs, but that doesn't help
<exarkun> I deployed a copy of one of my existing NixOS systems on EC2 (so, two NixOS systems w/ the same NixOS configuration). The new instance is broken because it only resolves names to IPv6 addresses and has no IPv6 connectivity. I made it happier by setting `networking.enableIPv6` to false.. but ... huh?
<exarkun> siers: How does it normally find it? make it wants pkgconfig too.
<exarkun> s/make/maybe/
<siers> exarkun, normally – idk :D I've never tried running it on regular distributions
<{^_^}> [nixpkgs] @marsam opened pull request #118808 → grpc: 1.36.4 -> 1.37.0 → https://github.com/NixOS/nixpkgs/pull/118808
<siers> but isn't pkg-config for compiling? this is compiled already
<{^_^}> [nixpkgs] @fabaff opened pull request #118809 → python3Packages.webexteamssdk: init at 1.6 → https://github.com/NixOS/nixpkgs/pull/118809
CptCaptain has joined #nixos
<exarkun> Oh I see, you were handed a pre-compiled binary and you're trying to run it
<siers> yup :)
<exarkun> mumble mumble patchelf mumble mumble
<exarkun> Maybe autoPatchelfHook
<siers> I think I should be able to run it without that even, since ldd is trying to resolve the depenencies
<siers> they're dynamic
<siers> so if I get it in scope, shouldn't that be enough? :) I know that's not proper, but I'm not going to publish it
<siers> (if I don't understand this correctly, please tell me)
<exarkun> I'm fuzzy on this part but I have a vague feeling that it isn't enough
stree has quit [Ping timeout: 265 seconds]
<exarkun> ldd is going to find it by looking at LD_LIBRARY_PATH and other such env vars
<exarkun> Putting zlib into buildInputs isn't going to add its path to LD_LIBRARY_PATH in the resulting environment ... is it?
<siers> might not
<AmandaC> on it won't
<AmandaC> no*
<siers> (and I meant proper as in static)
<exarkun> I guess you're right that pkgconfig probably isn't gonna help though
<{^_^}> [nixpkgs] @Mic92 merged pull request #118776 → codeowners: add marsam to Ruby and PostgreSQL → https://github.com/NixOS/nixpkgs/pull/118776
<exarkun> I'd try patchelf
<AmandaC> you'll have to make a wrapper with LD_LIBRARY_PATH getting set, though honestly it'd probably be easier to just use patchelf
<{^_^}> [nixpkgs] @Mic92 merged pull request #118803 → Radare cleanup → https://github.com/NixOS/nixpkgs/pull/118803
<supersandro2000> exarkun: use autoPatchElf hook and then add the dependencies to buildInputs
<siers> ok, then I'll look up how patchelf has to be used
<supersandro2000> it will complain if it can't find anything
<exarkun> supersandro2000: What's interesting about that mumble expression?
xlei has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #105896 → ssh-copy-id: init at 8.4p1 → https://github.com/NixOS/nixpkgs/pull/105896
<supersandro2000> exarkun: we already have mumble packaged
<lukegb> No, err, "mumble mumble" is an expression, not specifically about the software mumble
<exarkun> haha
<exarkun> thanks for the translation lukegb
<supersandro2000> oh
fendor_ has joined #nixos
stree has joined #nixos
fendor has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @NeQuissimus merged pull request #118741 → Kernel tests → https://github.com/NixOS/nixpkgs/pull/118741
Dr8128 has joined #nixos
<{^_^}> [nixpkgs] @vbgl opened pull request #118811 → scheherazade-new: 3.000 → 3.100 → https://github.com/NixOS/nixpkgs/pull/118811
respawn_ has quit [Quit: Leaving]
delan_ has quit [Quit: ZNC - http://znc.in]
puffnfresh has quit [Quit: ZNC 1.8.0 - https://znc.in]
neiluj has joined #nixos
neiluj has quit [Changing host]
neiluj has joined #nixos
CptCaptain has quit [Quit: WeeChat 2.9]
Mirrexagon has quit [Ping timeout: 252 seconds]
puffnfresh has joined #nixos
Mirrexagon has joined #nixos
ddellacosta has joined #nixos
VideoGameEnjoyer has joined #nixos
delan has joined #nixos
davidv7_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @dotlambda opened pull request #118812 → metadata-cleaner: 1.0.3 -> 1.0.4 → https://github.com/NixOS/nixpkgs/pull/118812
<{^_^}> [nixpkgs] @06kellyjac opened pull request #118813 → agate: 3.0.1 -> 3.0.2 → https://github.com/NixOS/nixpkgs/pull/118813
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118795 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118795
Qwerky has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #118814 → Revert "python3Packages.smartypants: fix src url" → https://github.com/NixOS/nixpkgs/pull/118814
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #118815 → staging: python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118815
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118814 → Revert "python3Packages.smartypants: fix src url" → https://github.com/NixOS/nixpkgs/pull/118814
<{^_^}> [nixpkgs] @dotlambda opened pull request #118816 → python3Packages.ytmusicapi: 0.15.0 -> 0.15.1 → https://github.com/NixOS/nixpkgs/pull/118816
Dr8128 has quit [Ping timeout: 252 seconds]
sss2 has quit [Quit: Leaving]
berberman has joined #nixos
berberman_ has quit [Ping timeout: 260 seconds]
gustavderdrache has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118584 → python3Packages.nats-python: init at 0.8.0, python3Packages.asyncio-nats-client: init at 0.11.4 → https://github.com/NixOS/nixpkgs/pull/118584
growpotkin has joined #nixos
Qwerky has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118812 → metadata-cleaner: 1.0.3 -> 1.0.4 → https://github.com/NixOS/nixpkgs/pull/118812
<{^_^}> [nixpkgs] @dotlambda opened pull request #118817 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118817
<{^_^}> [nixpkgs] @dotlambda closed pull request #118815 → staging: python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118815
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117217 → sshfs: add darwin build → https://github.com/NixOS/nixpkgs/pull/117217
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118816 → python3Packages.ytmusicapi: 0.15.0 -> 0.15.1 → https://github.com/NixOS/nixpkgs/pull/118816
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
demostanis[m] has joined #nixos
n-osborne has joined #nixos
<demostanis[m]> Does Nix support OpenBSD-like flavors or Gentoo-like USE flags?
vidbina has quit [Ping timeout: 246 seconds]
VideoGameEnjoyer has quit [Ping timeout: 240 seconds]
VideoGameEnjoyer has joined #nixos
<supersandro2000> demostanis[m]: An example would help me to understand what your question exactly is
<supersandro2000> because I never touched any bsd or gentoo
<demostanis[m]> Having multiple versions of a same software with different features chosen at compile time
<cransom> yes, it does. and they can all be installed and running concurrently.
<demostanis[m]> cransom: What's this feature called? How do I do it?
<demostanis[m]> How do I know the different flavors?
<gustavderdrache> > curl.override.__functionArgs
<{^_^}> { brotli = true; brotliSupport = true; c-ares = true; c-aresSupport = true; fetchurl = false; gnutls = true; gnutlsSupport = true; gssSupport = true; http2Support = true; idnSupport = true; ldapSuppor...
<JaakkoLuttinen[m> Is it possible to write a package derivation that runs commands that can get arbitrary stuff from the internet? I'm thinking of ways to package extensions for jupyterlab. They are installed with `jupyter-labextension install foobar` and this uses yarn under the hood to download `foobar` and install it. Just thinking how I could package this..
<Yaniel> demostanis[m]: overrides
<gustavderdrache> there's a feature called overrides that most large packages have, and you can turn feature on/off or substitute dependencies
<demostanis[m]> Will it make the package compile on my own machine? Or are there prebuilt binaries?
<gustavderdrache> there's a binary cache built by hydra
<demostanis[m]> Of all the possible overrides?
<gustavderdrache> no, unfortunately not
<cransom> no, it doesn't build all of the overrides. they would be compiled locally
<gustavderdrache> just the defaults set by nixpkgs
<gustavderdrache> in some cases there are variations, like git, gitFull, and gitMinimal
<gustavderdrache> but they're more the exception than the rule
<demostanis[m]> What's difference between all the git versions?
<gustavderdrache> which features were enabled at compile time
sangoma has quit [Quit: WeeChat 3.1]
<demostanis[m]> That's why Nixpkgs has so many packages lol
<demostanis[m]> And I see those in the gitFull source:
<demostanis[m]> Are those the overrides?
<gustavderdrache> yeah
<gustavderdrache> here's a short example with graphviz
<gustavderdrache> there's a "-nox" variation that disables xorg support
<gustavderdrache> you can do this locally on your own machine, too, but since it's in nixpkgs, hydra builds it and it's cached
<{^_^}> [nixpkgs] @primeos pushed to master « llvmPackages_12: 12.0.0-rc4 -> 12.0.0-rc5 »: https://git.io/JYp1t
<demostanis[m]> Ohhh ok, thanks for your answers. Why is that file only 20000 lines if there are 80000 packages?
<{^_^}> [nixpkgs] @primeos pushed to master « chromiumBeta: 90.0.4430.51 -> 90.0.4430.61 »: https://git.io/JYp1B
<gustavderdrache> it looks like github just gives up rendering, at least on my browser
<gustavderdrache> as for the other part of the disparity, that i don't know
<gustavderdrache> a nixpkgs maintainer can answer that better
devjokoL has joined #nixos
<devjokoL> hey there ---- please, how do I include the current git rev of HEAD in a fil in my derivation?
<eyJhb> devjokoL: What do you have atm.?
<devjokoL> eyJhb, I tried .pkgs/git rev-parse, but it says it is not a git repository
<devjokoL> it looks like .git was filtred from the source
<devjokoL> somehow
<devjokoL> which makes sense,  I guess
<eyJhb> Do you have a derivation?
<eyJhb> ie. .nix file?
<{^_^}> [nixpkgs] @dotlambda merged pull request #118817 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118817
<devjokoL> I wonder, is there a way to pull it from the .git files?
<devjokoL> like, not running git command
<eyJhb> What do you use to fetch your source. Because normally .git is stripped from the source :)
ddellacosta has quit [Ping timeout: 260 seconds]
devjokoL has quit [Quit: Connection closed]
griff__ has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #117170 → cargo-deny: 0.8.9 -> 0.9.0 → https://github.com/NixOS/nixpkgs/pull/117170
<srid> When using flakes for nixos configuration.nix, how do you pass an input all the way to its environment.systemPackages?
<srid> Say I have `inputs.himalaya.url = "github:srid/himalaya/nixify-crate2nix";` - and I want to pass himalaya to `outputs.nixosConfigurations.myhost`
<{^_^}> [nixpkgs] @Mic92 opened pull request #118818 → pytorch: don't install test binaries → https://github.com/NixOS/nixpkgs/pull/118818
<dutchie> the simplest way, i guess, would just be to put an ad-hoc module into the `modules` argument of nixos.lib.nixosSystem
codezero has quit [Quit: Ping timeout (120 seconds)]
codezero has joined #nixos
<srid> I have `modules = [ ./features/email/default.nix ]` - how would I pass the input to this email nix? Use `import`?
<dutchie> `outputs.nixosConfigurations.myhost = nixpkgs.lib.nixosSystem rec { modules = [ (import "whatever.nix") { environment.systemPackages = [ whatever ]; } ]; ... };`
<dutchie> just add another attrset as a second member of the list
<dutchie> another way is to have your himalaya flake provide an overlay that you can apply
<abathur> demostanis[m]: I see closer to 31k lines in my current checkout, but to the point probably 2 main reasons: 1) language ecosystem packages, 2) while it may often be the case, there's no 1-line-per-package requirement, see for example https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix#L11847-L11848
<abathur> demostanis[m]: you can look at the rest of the files in pkgs/top-level to get a sense of other major package sources
n-osborne has quit [Remote host closed the connection]
typetetris has joined #nixos
jonringer has joined #nixos
zupo has joined #nixos
<typetetris> hydra-check isn't building for me on unstable. That's just me or a general problem?
bpiv400 has joined #nixos
benson_bogard has joined #nixos
benson_bogard has quit [Quit: Connection closed]
attila_lendvai has joined #nixos
attila_lendvai has quit [Changing host]
attila_lendvai has joined #nixos
<{^_^}> [nixpkgs] @humancalico opened pull request #118819 → tremor-rs: 0.10.1 -> 0.11.1 → https://github.com/NixOS/nixpkgs/pull/118819
griff__ has quit [Quit: griff__]
griff__ has joined #nixos
__monty__ has quit [Quit: leaving]
benson_bogard has joined #nixos
benson_bogard has left #nixos [#nixos]
Dr8128 has joined #nixos
n-osborne has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
afreakk has quit [Quit: WeeChat 2.9]
cfricke has quit [Quit: WeeChat 3.1]
phjlip[m] has joined #nixos
Raito_Bezarius has quit [Ping timeout: 246 seconds]
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
n-osborne has quit [Remote host closed the connection]
Raito_Bezarius has joined #nixos
<{^_^}> [nixpkgs] @jluttine opened pull request #118820 → pythonPackages.ipympl: 0.5.8 -> 0.7.0 → https://github.com/NixOS/nixpkgs/pull/118820
<attila_lendvai> i'm trying to compile something that requires clang_11 but also libclang, and include files (e.g. clang/AST/ASTConsumer.h). what do i need in my default.nix? does anyone know about an example? i can get hold of clang 11.1.0 from unstable, but i don't know how to get to the header files.
oxalica has quit [Quit: oxalica]
<attila_lendvai> i see clang.lib mentioned, and nix-locate finds it there up until clang_9.out, but no clang_11 is mentioned
stree has quit [Ping timeout: 240 seconds]
confusus has quit [Remote host closed the connection]
<simpson> Do we have a standard technique for patching/blocking automake from installing executables with setuid? I am ready to sed-y this Makefile but am open to alternatives.
sangoma has joined #nixos
vidbina has joined #nixos
proofofkeags_ has quit [Ping timeout: 260 seconds]
oxalica has joined #nixos
Guest96316 has joined #nixos
Serus has quit [Read error: Connection reset by peer]
jmeredith has joined #nixos
nek0 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jluttine opened pull request #118821 → pythonPackages.jupyterlab: fix yarn.lock permissions for labextension → https://github.com/NixOS/nixpkgs/pull/118821
fendor_ is now known as fendor
endformationage has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed 141 commits to staging: https://git.io/JYpbv
stree has joined #nixos
arianvp_ is now known as arianvp
Serus has joined #nixos
oxalica has quit [Quit: oxalica]
MatrixBot25 has joined #nixos
<demostanis[m]> abathur: Oh okkk
<demostanis[m]> I was talking about ~20000 single lines of content (sloc)
<demostanis[m]> Why calling the file "all packages" if it's not all packages?
<abathur> it's still composing everything together
<demostanis[m]> * abathur: Oh okkk
<demostanis[m]> I was talking about ~20000 source lines of code (sloc)
<demostanis[m]> Why calling the file "all packages" if it's not all packages?
<cransom> friendly note, editing your message in matrix spams the irc channel with a duplicate message.
<abathur> ah, wondered :)
<demostanis[m]> Oh sorry, I've had forgotten that this channel was bridged to IRC
vvvb has joined #nixos
vvvb has quit [Client Quit]
<abathur> demostanis[m]: for example, the packages in top-level/agda-packages.nix get composed in here https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix#L17951-L17954
<{^_^}> [hydra] @regnat opened pull request #909 → Fix build with latest master → https://github.com/NixOS/hydra/pull/909
nek0 has joined #nixos
charly75 has joined #nixos
<demostanis[m]> Can't see, Github on my browser is truncating to 15000 lines
<abathur> eh, basically: `agdaPackages = callPackage ./agda-packages.nix {...};`
<demostanis[m]> I reloaded and it's showing up fully
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<matthewcroughan> supersandro2000: https://github.com/NixOS/nixpkgs/pull/116578/commits
<cransom> it may be 20,000 lines, but have 80,000 packages. think of some of those lines being "includes". yes, you don't see them all, but they are all there.
<matthewcroughan> Still waiting on this, anything blocking it?
<{^_^}> [nixpkgs] @superherointj opened pull request #118822 → k3s: 1.20.4+k3s1 -> 1.20.5+k3s1 → https://github.com/NixOS/nixpkgs/pull/118822
Qwerky has quit [Remote host closed the connection]
<demostanis[m]> abathur: I get the idea, nixpkgs defines packages across multiple files and all-packages.nix puts them together
<LilleCarl> When unstable doesn't build, if i wanted to change something in my configuration. How would i approach that? I've already done nixos-rebuild switch --upgrade-all
proofofkeags_ has joined #nixos
philr has quit [Ping timeout: 240 seconds]
<LilleCarl> Right now "NixOS is holding me hostage" :p
Guest96316 has quit [Quit: Leaving]
MatrixBot25 has quit [Quit: Bridge terminating on SIGTERM]
<Taneb> LilleCarl: what's making you think that unstable not building is preventing you here?
<hexa-> LilleCarl: rollback the channel
<hexa-> Taneb: e.g. steam and 32-bit tracker ._.
<hexa-> nix-channel --rollback
<LilleCarl> https://github.com/NixOS/nixpkgs/issues/118155 Taneb this is the one
<{^_^}> #118155 (by jonringer, 1 week ago, open): Steam / gtk+3 broken on master
<Taneb> Ah :(
<LilleCarl> hexa-: Seems like i don't have any older generations there. I've enabled flakes (idk why, I'm not using them). Because I'm quite certain i haven't done a nix cleanup in quite awhile
<hexa-> rip
<hexa-> LilleCarl: contribute to the issue/solution :p
<LilleCarl> It's already in the works, patches are were ready before i knew of the issue. Luckily i don't actually have anything to change atm. Thanks for the help though. Will def be useful some other time (second time unstable is broken for me but not on hydra) :)
<urkk> I'm using R to create some plots, but I'm unable to use monospace font in the plot
<dutchie> LilleCarl: you could also just not install steam (or whatever's pulling in the broken package) or replace it with a reference to a non-broken version
<{^_^}> [nixpkgs] @vcunat opened pull request #118823 → tracker: fixup i686 temporarily → https://github.com/NixOS/nixpkgs/pull/118823
<urkk> how can I determine which fonts are available to R?
<LilleCarl> dutchie: In my case it's Wine, could remove it indeed. Was more thinking rethorically if the same thing were to happen on a production machine with stable on it :)
<hexa-> yup, I'd comment wine as well if the update was important
<urkk> Oh, fc-list only reports DejaVu Sans so I guess I need to add more fonts first
<attila_lendvai> FTR, for reaching the libclang include and lib files, the magic was: CMAKE_INCLUDE_PATH="${unstable.llvmPackages_11.clang-unwrapped}/include/"
<tpw_rules> doesn't nixos have a command to see what revision of nixpkgs it was built on? nixos-version?
<tpw_rules> i would get that version and set it as your channel
<exarkun> I deployed a copy of one of my existing NixOS systems on EC2 (so, two NixOS systems w/ the same NixOS configuration). The new instance is broken because it only resolves names to IPv6 addresses and has no IPv6 connectivity. I made it happier by setting `networking.enableIPv6` to false.. but ... huh? :(
v0|d has joined #nixos
lordcirth__ has joined #nixos
lordcirth_ has quit [Ping timeout: 248 seconds]
afreakk has joined #nixos
zebrag has quit [Read error: Connection reset by peer]
zebrag has joined #nixos
<afontain_> Hi
<{^_^}> [nixpkgs] @primeos merged pull request #116544 → sway: 1.5 -> 1.6; wlroots: 1.12 -> 1.13 → https://github.com/NixOS/nixpkgs/pull/116544
avaq has quit [Ping timeout: 265 seconds]
<afontain_> I'm trying to find some documentation on how to build packages, and I've come to find a few bit and pieces here https://nixos.org/manual/nixpkgs/stable/
<afontain_> so I cloned nixpkgs, cd'ed to the right directory, and I am trying to fix/resuscitate some package
<afontain_> I do `nix-build -A unvanquished`
<afontain_> And I get a "error: cannot auto-call a function that has an argument without a default value ('stdenv')"
<afontain_> (`~/nixpkgs/pkgs/games/unvanquished`)
<afontain_> any idea?
<{^_^}> [hydra] @edolstra merged pull request #909 → Fix build with latest master → https://github.com/NixOS/hydra/pull/909
<gustavderdrache> there's a wrapper called callPackage that arranges for stuff like stdenv to be injected
<afontain_> I must say I'm used to the { pkgs ? import <nixpkgs>{} } of the nix shells
<{^_^}> [hydra] @edolstra merged pull request #907 → build(deps): bump cachix/install-nix-action from v12 to v13 → https://github.com/NixOS/hydra/pull/907
<gustavderdrache> you're probably going to want to go to the root of your checkout and do 'nix-build . -A unvanquished' instead
<{^_^}> [hydra] @edolstra merged pull request #904 → Add `GiteaStatus`-Plugin → https://github.com/NixOS/hydra/pull/904
<afontain_> ah, that works better
<afontain_> I'll mess around an see if I can get it to work
<afontain_> It's a game, do you think it makes sense to split it in three derivations, game (NaCl "binaries"), assets and engine?
<afontain_> (the engine could be used by some other games in the future, but the porting efforts are not complete)
ericsagn1 has quit [Ping timeout: 250 seconds]
rubm has joined #nixos
<gustavderdrache> my understanding is that the preference is to avoid unnecessary maintenance overhead, so it's probably best to wait until another game uses the engine in a way that the split would make sense
mallox has joined #nixos
mallox has quit [Client Quit]
<afontain_> ok
<{^_^}> [nixpkgs] @AndersonTorres closed pull request #118798 → palemoon: 29.1.0 -> 29.1.1 → https://github.com/NixOS/nixpkgs/pull/118798
<{^_^}> [nixpkgs] @AndersonTorres reopened pull request #118798 → palemoon: 29.1.0 -> 29.1.1 → https://github.com/NixOS/nixpkgs/pull/118798
afreakk has quit [Quit: WeeChat 2.9]
hopheynananey has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #118798 → palemoon: 29.1.0 -> 29.1.1 → https://github.com/NixOS/nixpkgs/pull/118798
afreakk has joined #nixos
davidv7_ has joined #nixos
VideoGameEnjoyer has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #118758 → home-assistant: 2021.3.4 -> 2021.4.0 → https://github.com/NixOS/nixpkgs/pull/118758
<simpson> Is there a good example package for a C build (autotools) that wants to install Perl bindings? In this case, SWIG is used to generate the bindings and that seems to work, but autotools wants to install the Perl modules alongside the `perl` buildInput, which is wrong and forbidden.
<gchristensen> simpson: Nix itself has perl bindings, maybe it could be used as inspiration
<afontain_> I have a "hash mismatch in fixed-output derivation '/nix/store/ybhs6xraxglcr6lk9vip8qfkkavbidk8-Unvanquished-v0.51.2-src'" error, but I'm wondering why the error message prints something that's not a sha256
<afontain_> "sha256:1shp5ml8m6ys6bsgjrhnjfzhpqvavlcaf64j0hifzn36zj01x6yn"
<afontain_> I have the impression it's not the same representation as sha256sums print
<afontain_> *as what
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #118468 → free42: add desktop item → https://github.com/NixOS/nixpkgs/pull/118468
<gustavderdrache> nix supports more than just sha256 as hashes
<gustavderdrache> as for the format, IIRC that's base32
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @jluttine opened pull request #118825 → pythonPackages.ipywidgets: 7.5.1 -> 7.6.3 → https://github.com/NixOS/nixpkgs/pull/118825
<gustavderdrache> a little bit shorter of a string than hex
<afontain_> hmm
VideoGameEnjoyer has joined #nixos
davidv7_ has quit [Ping timeout: 240 seconds]
<afontain_> is it still a regular hex one in the default.nix?
<gustavderdrache> nixpkgs (or nix, i forget where the conversion happens) accepts both formats, so you're not likely to see any issues
devhell has quit [Quit: leaving]
ericsagn1 has joined #nixos
<afontain_> So I get this error message. https://paste.gnugen.ch/paste/GE7H
<afontain_> I then download the file on the url
<gustavderdrache> did you change the source in some way? (a new version, for example)
<afontain_> and `sha256sum Unvanquished-something.tar.gz`
<afontain_> then I paste the result in the .nix
<afontain_> I've updated the version field: I'm trying to fetch the new version
wnklmnn has joined #nixos
<afontain_> does that look correct?
<gustavderdrache> yeah, the shasum matches on my machine as well
<afontain_> :-/
<gustavderdrache> it could be that the hash isn't of the tarball, but of the unpacked directory
<afontain_> I must say I've never used a directory hash
nschoe has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<afontain_> (though I've heard Nix does that)
<gustavderdrache> fetchFromGitHub may be different
<gustavderdrache> unfortunately i don't know enough about the inner workings to be able to tell you the difference :\
<afontain_> well, let's paste it back from the error message :S
<simpson> gchristensen: Yeah. I decided to pivot; I spent all day trying to package AMANDA without success, while I just built backupninja and it took no effort. I don't want to administer something that complex.
<gchristensen> oh yeah, good idea
eacameron has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #118826 → pythonPackages.smartypants: 1.8.6 -> 2.0.1 → https://github.com/NixOS/nixpkgs/pull/118826
<eacameron> Running ldd on an executable on NixOS shows "libstdc++.so.6 => not found". How do I patchelf this?
graf_blutwurst has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dotlambda merged pull request #118719 → nixos/home-assistant: use override before overridePythonAttrs → https://github.com/NixOS/nixpkgs/pull/118719
<{^_^}> [nixpkgs] @dotlambda merged pull request #118574 → python3Packages.recoll: init → https://github.com/NixOS/nixpkgs/pull/118574
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #118825 → pythonPackages.ipywidgets: 7.5.1 -> 7.6.3 → https://github.com/NixOS/nixpkgs/pull/118825
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118823 → tracker: fixup i686 temporarily → https://github.com/NixOS/nixpkgs/pull/118823
<{^_^}> [nixpkgs] @eduardosm opened pull request #118827 → dolphinEmuMaster: 5.0-13603 -> 5.0-14002 → https://github.com/NixOS/nixpkgs/pull/118827
<afontain_> eacameron: I don't know, but I found this https://nixos.wiki/wiki/Packaging/Binaries
<afontain_> back on my packaging thing, can I specify a derivation only works on x86_64?
ahmedelgabri has quit [Ping timeout: 258 seconds]
<afontain_> (because it does)
<eacameron> afontain_: Thank you!
<eacameron> afontain_: Yes you can specify that.
<afontain_> I had exactly the same situation yesterday but I found that page today
<eacameron> I'd have to look up but it's part of meta I believe. You can specify which platforms your drv supports.
* afontain_ installed NixOS 4 days ago
<eacameron> afontain_: meta.platforms = [ "x86_64-linux" ];
<afontain_> ah, found some explaination for my hash thing https://nixos.org/manual/nixpkgs/stable/#sec-source-hashes
acarrico has quit [Quit: Leaving.]
<afontain_> thanks
<afontain_> huh, about that autoPatchelfHook, I've added it on the first line, the "function arguments" of my derivation, and I get "called without required argument 'autoPatchelfHook'"
<afontain_> I wonder if it is deprecated?
<gustavderdrache> you need callPackage if you're using it like { autoPatchelfHook, ... }:
<gustavderdrache> if you're importing nixpkgs directly, just use 'pkgs.autoPatchelfHook' in your inputs
<afontain_> I'm using `nix-build . -A unvanquished`
saschagrunert has quit [Remote host closed the connection]
v0|d has quit [Remote host closed the connection]
<gustavderdrache> hrm
FRidh has joined #nixos
<{^_^}> [hydra] @astro closed pull request #849 → Add GiteaStatus plugin → https://github.com/NixOS/hydra/pull/849
<afontain_> also, can I do a "source-only" derivation?
<eacameron> afontain_: what's that?
<afontain_> I'm not sure it makes sense to be honest
<afontain_> the point was to mark this thing as being a source only available for x86_64, but it doesn't allow autopatching, so it's probably best to forget about it
liuyb has quit [Ping timeout: 240 seconds]
<afontain_> instead I tried to make a src an array, and I get this:
ebn has joined #nixos
<{^_^}> [nixpkgs] @figsoda opened pull request #118828 → nixos/programs/fish: add abbreviations config → https://github.com/NixOS/nixpkgs/pull/118828
<afontain_> (I'm going back to make a derivation, and will just say that install copies every file to $out)
<gustavderdrache> sources are already derivations
<gustavderdrache> but under the hood they're simpler than stdenv.mkDerivation
fendor_ has joined #nixos
<supersandro2000> and you can't add multiple sources to src
<supersandro2000> you would need to fetch them into a separate variable and copy them to the right location
<supersandro2000> or make a new derivation
<{^_^}> [nixpkgs] @RaghavSood opened pull request #118829 → rippled: 1.6.0 -> 1.7.0 → https://github.com/NixOS/nixpkgs/pull/118829
<tedious> Is there a way I can download an iso from hydra from a week or 2 back?
ahmedelgabri has joined #nixos
fendor has quit [Ping timeout: 265 seconds]
FRidh has quit [Ping timeout: 240 seconds]
<afontain_> supersandro2000: do you have an example for "copy them to the right location"?
<afontain_> I'm trying to get used to the magic, but I must say there is a lot of things to understand at the same time
neiluj has quit [Quit: leaving]
n-osborne has joined #nixos
<afontain_> is it possible to do it at the very beginning, before configure?
<afontain_> I tried to do something similar in preConfigure, but the source is read-only
ahmedelgabri has quit [Ping timeout: 260 seconds]
n-osborn_ has joined #nixos
<supersandro2000> use preConfigure for that
<supersandro2000> you can try doing chmod +w on the parent directory
<afontain_> chmod +w $src ?
<afontain_> "chmod: changing permissions of '/nix/store/w0gzgr5vk1h036x7g4zjqmiw0fanbbqn-Daemon-v0.51.1-src': Operation not permitted"
<{^_^}> [nixpkgs] @ymatsiuk opened pull request #118830 → fluxcd: 0.11.0 -> 0.12.0 → https://github.com/NixOS/nixpkgs/pull/118830
n-osborne has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @dotlambda merged pull request #118391 → openzwave: use official version → https://github.com/NixOS/nixpkgs/pull/118391
<afontain_> ah, I've got an idea
<afontain_> I don't need to change the source directory if I can pass flags to cmake
<srid> Where can I see the list of supported attributes in `flake.nix`?
<afontain_> (maybe)
<supersandro2000> afontain_: that will not work
<supersandro2000> more like chmod +w .
<supersandro2000> $src is the location of the source in the nix store which is read only
<afontain_> I have no idea what the current directory is
<gchristensen> the current directory will be where the source is unpacked to
<supersandro2000> you're PWD is your building directory where you can do what you like
<afontain_> ok
<supersandro2000> you can do nix-build -K to keep a copy of it in /tmp if the build fails
<{^_^}> [nixpkgs] @dlesl opened pull request #118831 → erlang: add updateScript and update versions → https://github.com/NixOS/nixpkgs/pull/118831
<afontain_> noted
<srid> Grr. You can't use a top-level `let` in `flake.nix`.
<srid> Weird
<afontain_> I'm still trying to get that autoPatchelfHook to work btw
<afontain_> looks like I'm the only one in all of nixpkgs to want to use it
<afontain_> well, "want"
<afontain_> is the usual way to patch them manually?
<supersandro2000> 150 packages use it
<supersandro2000> you only patch manually if you need to change a few things
<supersandro2000> if you package binaries autoPatchelfHook is usually used because it is faster
<{^_^}> [nixpkgs] @davegallant opened pull request #118832 → awscli2: 2.1.29 -> 2.1.35 → https://github.com/NixOS/nixpkgs/pull/118832
<afontain_> oh no
<afontain_> my nixpkgs was checked out to release-16.09
<gchristensen> oh dear
ahmedelgabri has joined #nixos
<afontain_> (well, at least I didn't do any useless work)
xelaushi[m] has joined #nixos
<xelaushi[m]> Hi, does anyone know if there is any sort of download count for NixOS or simply cached packages on cache.nixos.org?
<{^_^}> [nixpkgs] @jluttine closed pull request #118821 → pythonPackages.jupyterlab: fix yarn.lock permissions for labextension → https://github.com/NixOS/nixpkgs/pull/118821
<samueldr> not really possible, and probably not representative because of how trivial it is to override things and get cache misses
m0rphism has joined #nixos
<samueldr> xelaushi[m]: any reason for that?
ahmedelgabri has quit [Ping timeout: 260 seconds]
cirno-999 has quit [Ping timeout: 260 seconds]
<xelaushi[m]> Looking for some sort of count to put in a presentation
<xelaushi[m]> Doesn't even need to be very accurate lol, but I can understand if it's just not being counted
<samueldr> right, I guess an order of magnitude representative of the NixOS users count?
<xelaushi[m]> Yeah that'd work
<samueldr> would be interesting to see if something like that is possible
<samueldr> though there's also Nixpkgs without NixOS, which would be nice to see distinctly from NixOS "proper"
<xelaushi[m]> yeah that's true
<{^_^}> [nixpkgs] @oxalica opened pull request #118833 → rust-analyzer: 2021-03-22 -> 2021-04-05 → https://github.com/NixOS/nixpkgs/pull/118833
<{^_^}> [nixpkgs] @eyJhb opened pull request #118834 → texlive: 2020.20210109 -> 20210408 → https://github.com/NixOS/nixpkgs/pull/118834
<supersandro2000> xelaushi[m]: that count would be non representative. eg some people would count as 100
<xelaushi[m]> yes it would certainly be a lot bigger than the actual user count, but anything works even if a disclaimer is needed
justanotheruser has joined #nixos
stree has quit [Ping timeout: 246 seconds]
cirno-999 has joined #nixos
<remexre> I'm trying to package a language that has a PYTHONPATH-like mechanism, but I can't follow that code; is there a simpler example of the same thing somewhere?
<afontain_> hmm, since a "-" is valid in a Nix identifier, but not in a shell variable name, how do you refer to a derivation path?
<afontain_> for example, one could do "$gcc/bin/gcc -h" in a shell
<afontain_> but what if the derivation name has a dash ("-") in it?
lordcirth_ has joined #nixos
liuyb has joined #nixos
bitmapper has joined #nixos
mmmattyx has joined #nixos
<edrex> Is there a service that can generate option documentation (like https://search.nixos.org/options) for modules in an external flake, by url?
lordcirth__ has quit [Ping timeout: 260 seconds]
MidAutumnHotaru has quit [Quit: Quit 啾]
<sterni> afontain_: you use string interpolation or substituteAll pretty much
<sterni> the buildInputs don't even get passed as variables
MidAutumnHotaru has joined #nixos
<afontain_> so ${}?
<sterni> sure
AtnNn has quit [Quit: Reconnecting]
AtnNn has joined #nixos
cole-h has joined #nixos
AtnNn has quit [Client Quit]
afreakk has quit [Ping timeout: 240 seconds]
AtnNn has joined #nixos
<afontain_> I thought ${} was the only nix variable interpolation syntax to exist
liuyb has quit [Ping timeout: 260 seconds]
ManiacOfMadness has joined #nixos
stree has joined #nixos
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/d1183f3dc44 (from 26 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/de679c57ca5 (from 33 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
astylian_ has quit [Ping timeout: 240 seconds]
rajivr has quit [Quit: Connection closed for inactivity]
<sterni> afontain_: yeah, it is
domogled has quit [Quit: domogled]
<supersandro2000> afontain_: ${gcc}/bin/gcc -h
<afontain_> it seems that $xyz is allowed for shell scripts?
<cransom> yes. $xyz isn't special nix syntax.
rubm has quit [Ping timeout: 248 seconds]
domogled has joined #nixos
<afontain_> but it still works because the variable got exported?
tmciver has quit [Ping timeout: 265 seconds]
<sterni> most if not all values passed to the derivation are also added to the shell environment in which the builder is started
<sterni> so stuff like $src and $out are available
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
tmciver has joined #nixos
<afontain_> works for me
L0u1sChu has quit [Quit: Textual IRC Client: www.textualapp.com]
mkDoku has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer opened pull request #118836 → steam.fhsenv: move gtk3 to targetPkgs → https://github.com/NixOS/nixpkgs/pull/118836
<{^_^}> [nixpkgs] @siraben opened pull request #118837 → coqtail-math: init at 20201124 → https://github.com/NixOS/nixpkgs/pull/118837
mkDoku has joined #nixos
shibboleth has joined #nixos
griff__ has quit [Quit: griff__]
<{^_^}> [nixpkgs] @jonringer closed pull request #118836 → steam.fhsenv: move gtk3 to targetPkgs → https://github.com/NixOS/nixpkgs/pull/118836
mkDoku has quit [Ping timeout: 240 seconds]
mindavi has joined #nixos
griff__ has joined #nixos
meh` has quit [Ping timeout: 252 seconds]
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/6d1a044fc9f (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
kaligule has joined #nixos
<kaligule> Good morning
<mindavi> kaligule: good day
griff__ has quit [Quit: griff__]
ahmedelgabri has joined #nixos
<afontain_> is there a way to specify multiple licences for a derivation?
turlando has joined #nixos
<afontain_> ah, nice
ahmedelgabri has quit [Ping timeout: 260 seconds]
<afontain_> and it's a logical and, as in, to use this, you need to use parts that are MIT and parts that are BSD and parts that are MIT, while complying with all the terms?
<gchristensen> right
<afontain_> works for me
kaligule has quit [Quit: sleep]
<afontain_> I couldn't find in https://nixos.org/manual/nixpkgs/stable/ how to get the cmake build directory
<afontain_> I have a program and cmake doesn't say how to install it, so I'm trying to do something such as
<afontain_> install -Dm0755 -t $out/bin/ build/daemon*
BenjiProd has joined #nixos
ahmedelgabri has joined #nixos
<afontain_> I find that the downside of having things automagically done, is that it's harder to know exactly what's going on
<afontain_> on Alpine, I have no trouble to know that, because I am the one that called cmake -Bbuild in the first place
steve[m]2 has left #nixos ["User left"]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118832 → awscli2: 2.1.29 -> 2.1.35 → https://github.com/NixOS/nixpkgs/pull/118832
m0rphism has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @ErinvanderVeen opened pull request #118839 → myxer: init at 1.1.3 → https://github.com/NixOS/nixpkgs/pull/118839
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118830 → fluxcd: 0.11.0 -> 0.12.0 → https://github.com/NixOS/nixpkgs/pull/118830
tazjin has quit [Quit: Byeee]
tazjin has joined #nixos
tazjin has quit [Client Quit]
bpye has quit [Ping timeout: 268 seconds]
tazjin has joined #nixos
bpye has joined #nixos
zebrag has quit [Read error: Connection reset by peer]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118827 → dolphinEmuMaster: 5.0-13603 -> 5.0-14002 → https://github.com/NixOS/nixpkgs/pull/118827
charly75 has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @mweinelt opened pull request #118841 → lib3mf: patch CVE-2021-21882 → https://github.com/NixOS/nixpkgs/pull/118841
fuiltilt has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #118820 → pythonPackages.ipympl: 0.5.8 -> 0.7.0 → https://github.com/NixOS/nixpkgs/pull/118820
<{^_^}> [nixpkgs] @mweinelt reopened pull request #118820 → pythonPackages.ipympl: 0.5.8 -> 0.7.0 → https://github.com/NixOS/nixpkgs/pull/118820
<ashkitten> supersandro2000: what is your deal? can you not wait even 1 day for a maintainer to look at a PR before you merge it? is your trigger finger that itchy?
<ashkitten> supersandro2000: i saw #118827 when i woke up and was going to test it when i got to my computer, but you had already merged it
<{^_^}> https://github.com/NixOS/nixpkgs/pull/118827 (by eduardosm, 2 hours ago, merged): dolphinEmuMaster: 5.0-13603 -> 5.0-14002
meh` has joined #nixos
<ashkitten> supersandro2000: this is not acceptable, even for seemingly trivial updates. you need to give time for maintainers to look over them. we're here for a reason.
konfou[m] has joined #nixos
<{^_^}> [nixpkgs] @superherointj opened pull request #118842 → linode-cli: 2.15.0 -> 5.0.1 → https://github.com/NixOS/nixpkgs/pull/118842
dotlambda has quit [Quit: ZNC 1.8.1 - https://znc.in]
dotlambda has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #118737 → python3Packages.{panel,bokeh}: update packages → https://github.com/NixOS/nixpkgs/pull/118737
ericsagn1 has quit [Ping timeout: 250 seconds]
proofofkeags_ has quit [Ping timeout: 240 seconds]
bpye has quit [Ping timeout: 260 seconds]
riksteri has quit [Quit: riksteri]
bpye has joined #nixos
<{^_^}> [nixpkgs] @trepetti opened pull request #118843 → vimPlugins.vim-opencl: init at 1.1 → https://github.com/NixOS/nixpkgs/pull/118843
liuyb has joined #nixos
n-osborn_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118808 → grpc: 1.36.4 -> 1.37.0 → https://github.com/NixOS/nixpkgs/pull/118808
zupo has joined #nixos
ericsagn1 has joined #nixos
zupo has quit [Client Quit]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #118844 → python38Packages.h5py: 3.1.0 -> 3.2.1 → https://github.com/NixOS/nixpkgs/pull/118844
liuyb has quit [Ping timeout: 260 seconds]
superherointj has joined #nixos
<superherointj> I'm attempting to update a python Nix package that has requirements that checks for version of Python (like: future; python_version < '3.4'). Python dependencies are being declared at propagatedBuildInputs. How do you usually check for Python version in this case?
bpye has quit [Ping timeout: 268 seconds]
bpye1 has joined #nixos
<{^_^}> #118842 (by superherointj, 19 minutes ago, open): linode-cli: 2.15.0 -> 5.0.1
<mindavi> superherointj: Is the goal to allow overriding the python version to be below 3.4 and only then adding those dependencies?
<superherointj> Yes.
<mindavi> Maybe look at pkgs/tools/text/dfmt/default.nix?
<mindavi> I see something that is named pythonOlder which might be of interest
<superherointj> Thanks
<mindavi> grepping for "disabled =" will show some of the ways people check for python version
<tpw_rules> nix doesn't support such old pythons i don't think. it's probably better to make sure the package doesn't build if the version is below 3.4
<mindavi> It doesn't, but you can always package it yourself for private use, which I assume is the case here
<tpw_rules> alternately you can use pythonOlder to conditionalize including those dependencies
<tpw_rules> Mindavi: i mean it's being submitted as a PR to nixpkgs
<superherointj> My goal is to update package at nixpkgs.
<tpw_rules> alternately alternately enum34 specifically doesn't do anything if the python is 3.4 or greater so you can just include it and not care
<{^_^}> [nixpkgs] @unclechu opened pull request #118845 → Add “place-cursor-at” package to “release-20.09” → https://github.com/NixOS/nixpkgs/pull/118845
n-osborne has quit [Remote host closed the connection]
<superherointj> As I had to remove an older patch, I wanted to make sure I am not creating a problem by doing so.
<mindavi> That's true, but some people have overlays over nixpkgs with their own packages, which might include python3.4
<{^_^}> [nixpkgs] @trepetti opened pull request #118846 → appimage-run: add missing dependency libxshmfence → https://github.com/NixOS/nixpkgs/pull/118846
n-osborne has joined #nixos
<mindavi> But there's a big chance nobody is actually still using python34 which is eol since 2019
<mindavi> It's good that people think about backwards compat though :)
<tpw_rules> the patch was to make the package check for the version properlyu
<tpw_rules> instead of requiring it all the time
<midchildan> ,locate leaks
<{^_^}> Found in packages: ccl, apitrace, sonic-pi, python37Packages.zha-quirks, python38Packages.zha-quirks
<lukegb> _wow_ that was a rabbit hole
ebn has quit [Ping timeout: 265 seconds]
proofofkeags_ has joined #nixos
<superherointj> I think this is handled in upstream already: https://github.com/linode/linode-cli/blob/master/setup.py
sangoma has quit [Ping timeout: 265 seconds]
<superherointj> Likely that won't download dependency just use it. I'm not a Python programmer. :)
* superherointj is guessing a lot.
turlando has quit [Remote host closed the connection]
bpye0 has joined #nixos
lsix has quit [Ping timeout: 258 seconds]
bpye has quit [Ping timeout: 268 seconds]
bpye0 is now known as bpye
lsix has joined #nixos
<{^_^}> [nixpkgs] @trepetti closed pull request #118846 → appimage-run: add missing dependency libxshmfence → https://github.com/NixOS/nixpkgs/pull/118846
stree has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @lovesegfault merged pull request #118409 → virtualisation/containers: move to settings model for containersConf → https://github.com/NixOS/nixpkgs/pull/118409
Lord_of_Life_ has joined #nixos
Lord_of_Life has quit [Ping timeout: 248 seconds]
Lord_of_Life_ is now known as Lord_of_Life
ebn has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #118847 → pythonPackages.jupyterlab: move jupyter-packaging to nativeBuildInput… → https://github.com/NixOS/nixpkgs/pull/118847
hopheynananey has joined #nixos
afreakk has joined #nixos
zakame has quit [Ping timeout: 240 seconds]
domogled has quit [Quit: domogled]
domogled1 has joined #nixos
mkDoku has joined #nixos
zakame has joined #nixos
stree has joined #nixos
domogled1 is now known as domogled
siers is now known as ij
<eyJhb> Damn it, what do I do about this error? `error: file 'nixos-config' was not found in the Nix search path (add it using $NIX_PATH or -I), at /etc/nixos/nixpkgs-nixos-20.09/nixos/default.nix:1:60`?
justanotheruser has quit [Ping timeout: 248 seconds]
<eyJhb> Got it..
<{^_^}> [nixpkgs] @sternenseemann pushed to haskell-updates « haskellPackages.colourista: remove now obsolete patch »: https://git.io/JYhwB
<samueldr> eyJhb: the solution was?
srk has quit [Ping timeout: 248 seconds]
<samueldr> (let's not be that xkcd)
turlando has joined #nixos
astylian_ has joined #nixos
<eyJhb> samueldr: nix-build -I nixpkgs=nixpkgs/ -I nixos-config=configuration.nix build (from /etc/nixos)
<samueldr> heh, as I suspected :)
<samueldr> a tip is to look at the NIX_PATH in a default NixOS install
neiluj has joined #nixos
neiluj has joined #nixos
neiluj has quit [Changing host]
mkDoku has quit [Ping timeout: 248 seconds]
<eyJhb> :( I have none of those samueldr :/
turlando has quit [Client Quit]
<samueldr> n/p, the tip was not for you eyJhb
<samueldr> it was for you, the reader, you who are reading the logs in the future ;)
stree has quit [Quit: Caught exception]
<eyJhb> Stop breaking the forth wall samueldr. The universe cannot handle that :D
stree has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann pushed to haskell-updates « haskellPackages.hgeometry-combinatiorial: unbreak »: https://git.io/JYhr8
justanotheruser has joined #nixos
<eyJhb> I was actually following a journey today in the logs. It was over three days a person tried to get something to work.
<hazel[m]> how do I determine what package in my configuration is pulling a dependency?
<hazel[m]> something's pulling `jdk12` which is broken and I'd rather not have it at all
aminechikhaoui7 has joined #nixos
nsnc has quit [Quit: Ping timeout (120 seconds)]
yourfate_ has joined #nixos
domogled1 has joined #nixos
fzakaria has quit [Quit: No Ping reply in 180 seconds.]
bgamari_ has joined #nixos
nsnc has joined #nixos
blueberrypie6 has joined #nixos
<Ankhers> Does anyone have a working virtualbox install? Whenever I try to install it I get a compilation error.
zhaofeng1 has joined #nixos
MightyJoe has joined #nixos
fzakaria has joined #nixos
kwork has quit [Remote host closed the connection]
domogled has quit [Ping timeout: 268 seconds]
zhaofeng has quit [Ping timeout: 268 seconds]
bgamari has quit [Ping timeout: 268 seconds]
aminechikhaoui has quit [Ping timeout: 268 seconds]
tpw_rules has quit [Ping timeout: 268 seconds]
blueberrypie has quit [Ping timeout: 268 seconds]
hopheynananey has quit [Ping timeout: 268 seconds]
yourfate has quit [Ping timeout: 268 seconds]
cyraxjoe has quit [Ping timeout: 268 seconds]
yourfate_ is now known as yourfate
blueberrypie6 is now known as blueberrypie
domogled1 is now known as domogled
aminechikhaoui7 is now known as aminechikhaoui
hopheynananey has joined #nixos
marusich has joined #nixos
tobiasBora has quit [Ping timeout: 268 seconds]
tobiasBora has joined #nixos
bpye has quit [Quit: Ping timeout (120 seconds)]
tpw_rules has joined #nixos
bpye has joined #nixos
kwork has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #91318 → doh-proxy-rust: init at 0.3.8 → https://github.com/NixOS/nixpkgs/pull/91318
astylian_ has quit [Ping timeout: 240 seconds]
<supersandro2000> ashkitten: I have added myself a note to remember that
<ashkitten> supersandro2000: for just me? or for everyone?
<supersandro2000> Ankhers: IIRC it fails with the latest kernel. There was a patch today IIRC.
n-osborne has quit [Remote host closed the connection]
<Ankhers> supersandro2000: Do you know what the easiest way for me to apply that patch would be?
gustavderdrache has quit [Quit: Leaving.]
<{^_^}> [nixpkgs] @vbgl opened pull request #118849 → ocamlPackages.{cairo2, lablgtk3}: use dune 2 → https://github.com/NixOS/nixpkgs/pull/118849
ddellacosta has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @sternenseemann opened pull request #118850 → ocamlPackages.irmin*: 2.5.1 -> 2.5.2 → https://github.com/NixOS/nixpkgs/pull/118850
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118702 → conan: 1.27.0 -> 1.35.0 → https://github.com/NixOS/nixpkgs/pull/118702
jimmiehansson has quit [Remote host closed the connection]
zupo has joined #nixos
<{^_^}> [nixpkgs] @lukegb opened pull request #118851 → python3Packages.pyobjc: 7.0.1 -> 7.1 → https://github.com/NixOS/nixpkgs/pull/118851
akaWolf has quit [Ping timeout: 240 seconds]
bpye has quit [Ping timeout: 240 seconds]
bpye has joined #nixos
ktims has joined #nixos
fendor_ has quit [Remote host closed the connection]
<ktims> can someone help me fix/figure out why nix-store --tree insists that ipsec-tools is pulling in (insecure) openssl-1.0.2, yet none of the .nix definitions i can find on the box anywhere refer to this version
zebrag has quit [Quit: Konversation terminated!]
<ktims> was originally installed on 19.09 iirc, so this was a problem before, i just overrode the insecure check initially, but now it appears the nixpkgs has been fixed and shouldn't be pulling it anymore, but i can't figure out why it still is
zebrag has joined #nixos
akaWolf has joined #nixos
bpye has quit [Quit: Ping timeout (120 seconds)]
astylian_ has joined #nixos
ddellaco_ has joined #nixos
bpye has joined #nixos
<{^_^}> [nixpkgs] @lukegb closed pull request #118851 → python3Packages.pyobjc: 7.0.1 -> 7.1 → https://github.com/NixOS/nixpkgs/pull/118851
<{^_^}> [nixpkgs] @gebner merged pull request #118841 → [20.09] lib3mf: patch CVE-2021-21882 → https://github.com/NixOS/nixpkgs/pull/118841
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @lukegb opened pull request #118852 → python3Packages.pyobjc: repackage 7.1 → https://github.com/NixOS/nixpkgs/pull/118852
abrar has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @lukegb closed pull request #118852 → python3Packages.pyobjc: repackage 7.1 → https://github.com/NixOS/nixpkgs/pull/118852
<lukegb> third time lucky...
<{^_^}> [nixpkgs] @bachp opened pull request #118853 → unifi6: 6.0.45 -> 6.1.71 → https://github.com/NixOS/nixpkgs/pull/118853
<{^_^}> [nixpkgs] @lukegb opened pull request #118854 → python3Packages.pyobjc: repackage 7.1 → https://github.com/NixOS/nixpkgs/pull/118854
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JYhXv
<sterni> lukegb: wowwwwww that's huge
<lukegb> sterni: I knowwww :(
ahmed_elgabri has joined #nixos
<{^_^}> [nixpkgs] @bachp opened pull request #118855 → nixos/unifi: harden service → https://github.com/NixOS/nixpkgs/pull/118855
bryanhonof has joined #nixos
liuyb has joined #nixos
<bryanhonof> Hello, I have a executable that dynamically links to the vulkan library, trough dlopen. Is there a way to still get that executable working on NixOS? I've tried out patchelf, but I honestly think I'm using it wrong :).
ahmedelgabri has quit [Ping timeout: 260 seconds]
nckx has quit [Quit: Updating my Guix System — https://guix.gnu.org]
BenjiProd has quit [Remote host closed the connection]
meh` has quit [Ping timeout: 252 seconds]
liuyb has quit [Ping timeout: 240 seconds]
<mindavi> bryanhonof: I don't have any experience with it, but there's something called autoPatchelfHook that might be useful for that?
<bryanhonof> Mindavi: I haven't tried that out yet. I'll go try right now.
lord| has quit [Read error: Connection reset by peer]
lord| has joined #nixos
<l33[m]> yeah, i used autoPatchelfHook and it worked well for what i was packaging, and saves bringing automake and autoconf.
ddellaco_ has quit [Remote host closed the connection]
ddellaco_ has joined #nixos
nckx has joined #nixos
<abathur> bryanhonof: if that doesn't work, I know I've noticed at least a few dlopen patches in nixpkgs, you may be able to find examples via https://github.com/NixOS/nixpkgs/search?q=dlopen&type=code or https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+is%3Amerged+dlopen+
bryanhonof has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #118856 → terragrunt: 0.28.18 -> 0.28.19 → https://github.com/NixOS/nixpkgs/pull/118856
nonchris has joined #nixos
oida has quit [Remote host closed the connection]
<supersandro2000> lukegb: please take a look at https://github.com/NixOS/nixpkgs/pull/102306
<{^_^}> #102306 (by SuperSandro2000, 22 weeks ago, open): python3Packages.pyobjc: Reinit
oida has joined #nixos
<lukegb> supersandro2000: that seems to be 6.2.2 rather than 7.1?
<supersandro2000> yeah because it is still since november 2020
<lukegb> oh hm
<supersandro2000> also you don't need to try to contact upstream. He takes forever to answer.
<supersandro2000> your approach has ~115 files less but probably does not run tests
zupo_ has joined #nixos
<{^_^}> [nixpkgs] @plabadens opened pull request #118857 → free42: 3.0.1 -> 3.0.2 → https://github.com/NixOS/nixpkgs/pull/118857
<lukegb> it runs some tests, but also it does imports; interestingly 7.0.1 and 7.1 are broken because CoreServices can't be imported
dycan has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/d1183f3dc44 (from 30 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<lukegb> I'm definitely unconvinced by generating ~115 files across 171 commits though
<lukegb> like, I can't review this :P
zupo has quit [Ping timeout: 260 seconds]
<supersandro2000> you don't need to review every file
<supersandro2000> they are auto generated from 4 files
<supersandro2000> also you're PR is broken because it does not add some missing dependency on frameworks
<lukegb> I'm still not reading *171* commits
is_null has quit [Ping timeout: 240 seconds]
<supersandro2000> then don't read them.
<supersandro2000> they where auto generated anyway
<supersandro2000> the only really important files are the first one and the last ones that change the darwin frameworks.
shibboleth has quit [Quit: shibboleth]
<supersandro2000> take a look was not meant like review it but more like I already did that with more things you miss
<supersandro2000> and we should properly package all pyobjc-frameworks-* because it will be very confusing for downstream users if one of the 100 packages is missing because we don't have that SDK yet. At least we should add a warning or throw when someone tries to use such package.
lawt has joined #nixos
neiluj has quit [Ping timeout: 260 seconds]
vidbina has quit [Ping timeout: 246 seconds]
ddellaco_ has quit [Remote host closed the connection]
ddellaco_ has joined #nixos
<supersandro2000> I am writing all things which I think need to be talked about on your PR.
<lukegb> simd/simd.h's in MetalKit; do the darwin frameworks change actually affect things at runtime? I was under the impression that all the frameworks are dyloaded
puffnfresh1 has joined #nixos
ahmed_elgabri has quit [Ping timeout: 248 seconds]
<lukegb> as in: my stuff all does compile and load, but also I don't really care that much
puffnfresh1 has quit [Remote host closed the connection]
ddellaco_ has quit [Ping timeout: 252 seconds]
<lukegb> I don't know what you mean by "we should properly package all pyobjc-frameworks-*"
<lukegb> because they are packaged and available
ericsagn1 has quit [Ping timeout: 258 seconds]
<remexre> just ran nix-env --upgrade on an aarch64-linux machine and it became unable to evaluate nixpkgs
<remexre> nix upgrade-nix restored to a version that could again
<remexre> is this an "upgrade requires manual intervention" thing and I'm not subscribed to whatever mailing list announces these?
<supersandro2000> lukegb: let me check maybe I just missed something
<lukegb> supersandro2000: eh, it's fine, I prefer that you have autoupdates tbf
bpye has quit [Ping timeout: 268 seconds]
<supersandro2000> but very good job! You're way is a lot more maintainable and easier to overlook than my way and I only have some minor ideas how we could make it easier for downstream users and correct some dependencies in this dependency hell
bpye has joined #nixos
<supersandro2000> lukegb: my auto updates are more a templating generation. Fetching the source from github in its entirety is actually a better idea than fetching them all from pypi
timon37 has joined #nixos
<lukegb> ah, hm
<lukegb> I think maybe we should split the frameworks changes into a separate PR
<supersandro2000> lukegb: you did not add the frameworks for 10.13 to 10.15 and I think to make it easier for consumers in other packages we should add them with a warning/error/throw that they know the package is not available but the name is correct
<lukegb> ah, yeah, _that_ probably makes sense
<lukegb> I also didn't package iTunesLibrary
<lukegb> although, hmm, you don't even depend on the framework
<lukegb> I guess it's not needed?
<supersandro2000> just treat it like the frameworks for newer skds
<supersandro2000> lukegb: WDYM? the framework name itself?
<supersandro2000> I must admit I never tested the packages on a real python packages, only with the test suite in pyobjc so it could be that this part is still missing or not
<lukegb> I'm surprised all the pythonImportsCheck fail with assertion fails though
ericsagn1 has joined #nixos
<supersandro2000> about the framework changes: we are rebuilding everything anyway and I think as long as we only port the parts where missing framework dependencies are added we don't risk a high risk to break anything
<supersandro2000> trying to avoid rebuilding the entire package set multiple times needlessly wouldn't be bad
alarsyo_ has joined #nixos
<supersandro2000> lukegb: can you share a log? otherwise I have a hard time trying to help you with that.
alarsyo_ has left #nixos [#nixos]
<{^_^}> [nixpkgs] @Ma27 pushed to master « gitea: 1.13.6 -> 1.13.7 »: https://git.io/JYhHH
cantstanya has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @aanderse opened pull request #118858 → devilutionx: update sha256, fix build → https://github.com/NixOS/nixpkgs/pull/118858
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gustavderdrache has joined #nixos
vidbina has joined #nixos
stree has quit [Ping timeout: 260 seconds]
wnklmnn has quit [Quit: Leaving]
superherointj has quit [Quit: Leaving]
cantstanya has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to gnome-40: https://git.io/JYhQW
ahmed_elgabri has joined #nixos
civodul has quit [Ping timeout: 260 seconds]
hyiltiz has quit [Ping timeout: 268 seconds]
ahmed_elgabri has quit [Ping timeout: 260 seconds]
<pie_> clever: https://www.freedesktop.org/software/systemd/man/systemd-nspawn.html Note that systemd-networkd.service(8) includes by default a network file /usr/lib/systemd/network/80-container-ve.network matching the host-side interfaces created this way, which contains settings to enable automatic address provisioning on the created virtual link via DHCP, as well as automatic IP routing onto the host's external network interfaces. It also contains /
<pie_> usr/lib/systemd/network/80-container-host0.network matching the container-side interface created this way, containing settings to enable client side address assignment via DHCP.
hyiltiz has joined #nixos
hyiltiz has joined #nixos
<pie_> but i dont know is nixos-container/ nspawn is actually using that
<{^_^}> [nixpkgs] @06kellyjac opened pull request #118859 → waypoint: 0.2.4 -> 0.3.0 → https://github.com/NixOS/nixpkgs/pull/118859
marusich has quit [Ping timeout: 268 seconds]
stree has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed to release-20.09 « gitea: 1.13.6 -> 1.13.7 »: https://git.io/JYh7X
ahmed_elgabri has joined #nixos
<{^_^}> [nixpkgs] @talyz opened pull request #118861 → gitlab-shell: 13.15.1 -> 13.17.0 → https://github.com/NixOS/nixpkgs/pull/118861
philr has joined #nixos
ahmed_elgabri has quit [Ping timeout: 260 seconds]
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @edwtjo pushed 3 commits to master: https://git.io/JYh5z
kaction has joined #nixos
<kaction> Hello. Is there any way flake.nix can refer to its own commit sha1?
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
kaction42 has joined #nixos
<{^_^}> [nixpkgs] @bobrik opened pull request #118862 → clickhouse-cli: init at 0.3.7 → https://github.com/NixOS/nixpkgs/pull/118862
ddellacosta has quit [Ping timeout: 240 seconds]
<kaction> Hi? Sorry for noise, not sure my client works.
liuyb has joined #nixos
<Yaniel> we can read you
<AmandaC> kaction: an implicit input called `self` is made
fuiltilt has quit [Ping timeout: 260 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/a5f63438082 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/21264a93673 (from 11 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<AmandaC> you can get the info (sha1, date, etc) can be gotten from that same as any other input
liuyb has quit [Ping timeout: 240 seconds]
fuiltilt has joined #nixos
<kaction> 24| packages."${system}" = {
<kaction> 25| info = pkgs.writeText "info" "${self.sha1}";
<kaction> 26| package = pkgs.stdenv.mkDerivation {
<kaction> attribute 'sha1' missing
<kaction> How can I start repl to interactively see things?
<kaction> Usually when I want to find things in nixpkgs, I do "nix repl ~/devel/nixpkgs". Can I do the same with flakes?
<kaction> >>= nix --version
<kaction> nix (Nix) 2.4pre20201205_a5d85d0
ddellaco_ has joined #nixos
ddellaco_ has quit [Ping timeout: 268 seconds]
ktims has left #nixos [#nixos]
<{^_^}> [nixpkgs] @ajs124 opened pull request #118863 → python3.pkgs.cryptography: 3.4.6 -> 3.4.7 → https://github.com/NixOS/nixpkgs/pull/118863
<{^_^}> [nixpkgs] @ajs124 opened pull request #118864 → matrix-synapse: 1.30.0 -> 1.31.0 → https://github.com/NixOS/nixpkgs/pull/118864
jess has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann merged pull request #115658 → nixos/libvirtd: add package option → https://github.com/NixOS/nixpkgs/pull/115658
<{^_^}> [nixpkgs] @mweinelt opened pull request #118865 → home-assistant: 2021.4.0 -> 2021.4.1 → https://github.com/NixOS/nixpkgs/pull/118865
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #118866 → kid3: 3.8.5 -> 3.8.6 → https://github.com/NixOS/nixpkgs/pull/118866
dotdotok has joined #nixos
kaction42 has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118856 → terragrunt: 0.28.18 -> 0.28.19 → https://github.com/NixOS/nixpkgs/pull/118856
<{^_^}> [nixpkgs] @ajs124 closed pull request #118863 → python3.pkgs.cryptography: 3.4.6 -> 3.4.7 → https://github.com/NixOS/nixpkgs/pull/118863
<{^_^}> [nixpkgs] @veprbl opened pull request #118867 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118867
Synthetica has quit [Quit: Connection closed for inactivity]
bpiv400 has quit [Quit: Connection closed]
ddellaco_ has joined #nixos
superherointj has joined #nixos
supersandro2000 has quit [Disconnected by services]
<{^_^}> [nixpkgs] @cole-h opened pull request #118868 → zoxide: 0.5.0 -> 0.6.0 → https://github.com/NixOS/nixpkgs/pull/118868
supersandro2000 has joined #nixos
mbrgm_ has joined #nixos
jesystani has quit [Ping timeout: 248 seconds]
mbrgm has quit [Ping timeout: 240 seconds]
mbrgm_ is now known as mbrgm
bpye has quit [Ping timeout: 260 seconds]
attila_lendvai has quit [Ping timeout: 260 seconds]
jesystani has joined #nixos
ddellaco_ has quit [Ping timeout: 240 seconds]
codygman__ has joined #nixos
<supersandro2000> I have no idea I must admit
<jesystani> hello, im trying to get zsh-nix-shell to work, i think i have to set the nix build shell to choose zsh, but im having trouble finding which option sets that
proofofkeags_ has quit [Ping timeout: 240 seconds]
<codygman__> Can anyone help me understand why the python library I'm trying to package is failing? It's 6 years old so I'm guessing "unsupported package type" might be the answer but I don't know how to confirm that. https://github.com/codygman/tech-roam/blob/master/20210408181742-building_python_applications_with_nix.org#first-attempt
bpye has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118867 → python3Packages.smartypants: fix src url → https://github.com/NixOS/nixpkgs/pull/118867
dckc has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #118866 → kid3: 3.8.5 -> 3.8.6 → https://github.com/NixOS/nixpkgs/pull/118866