gchristensen changed the topic of #nixos-chat to: NixOS but much less topical || https://logs.nix.samueldr.com/nixos-chat
waleee-cl has quit [Quit: Connection closed for inactivity]
endformationage has quit [Quit: WeeChat 2.6]
drakonis has quit [Quit: WeeChat 2.6]
MichaelRaskin has joined #nixos-chat
pie_ has joined #nixos-chat
<pie_> joepie91: are you not at nixcon btw?
<pie_> i might have forgotten that you said you arent coming ths time now that i think about it xD
Church- has quit [Quit: WeeChat 1.6]
lucus16 has quit [Quit: No Ping reply in 180 seconds.]
<joepie91> pie_: nop
<joepie91> will be coming to congress though
__monty__ has joined #nixos-chat
{^_^} has quit [Remote host closed the connection]
tokudan has quit [Quit: Dunno.]
tokudan has joined #nixos-chat
waleee-cl has joined #nixos-chat
<eyJhb> How is NixCon going?
<samueldr> sleepy
<eyJhb> samueldr: but sleepy and fun? :p
<eyJhb> I am at home and sleepy, so that is common
<samueldr> I have to hide, I'm being hassled in mobile-nixos stuff
<samueldr> :3
<eyJhb> samueldr: SO HOW IS THE MOBILE NIXOS GOING?! :D
<eyJhb> Haha, \jk! But must be fun to talk about either way :p
xd1le has quit [Quit: leaving]
<__monty__> infinisil: I think you handle bot business?
endformationage has joined #nixos-chat
<qyliss> I had to go back to the hotel for a bit because I felt overwhelmed with all the people asking me about Spectrum
<__monty__> Well, now you *have* to tell us.
<qyliss> hmm?
<__monty__> You wouldn't want to leave chekhov's gun on the table now would you?
<MichaelRaskin> A Checkhov's gun on the table is completely safe, though!
<MichaelRaskin> If it were on the wall, that would be dangerous
<__monty__> I don't know. Most people feel tempted to russian roulette.
<joepie91> okay, asking here since it's getting no answers in #nixos and I'm starting to become pretty desperate: I cannot rebuild my system right now because of the flaky tests in pycurl that have been causing trouble forever (https://github.com/NixOS/nixpkgs/issues/55945), so how do I make those tests go away so that it at least doesn't break my rebuild? it's required by dbus -> system-config-printer so it seems that the only way to
<joepie91> remove the dep entirely would be to disable printing, which isn't an option
<__monty__> joepie91: Can't you set doCheck = false in an overlay?
<joepie91> __monty__: yes, that is one of the many things that I have been trying to do for the past 2 days. for some reason, I can't seem to find the magical incantation that makes it actually pick up the override
<joepie91> I've even tried deliberately breaking the package: https://gist.github.com/joepie91/60b5f314f08c56ffec16d1a01bcc709e
<joepie91> and it just happily keeps building it as usual
<joepie91> I have no idea what is going on
<joepie91> __monty__: also, apologies if I come across a bit unfriendly. I've had some very stressful weeks :/
<joepie91> so this is a bit of a last straw thing for me
<MichaelRaskin> checkout and rebuild?
<joepie91> MichaelRaskin: ?
<MichaelRaskin> Well, you can checkout nixpkgs, edit the needed revision and use this edited checkout
<joepie91> MichaelRaskin: that isn't a long-term solution, though, and just moves the problem to the next update
<MichaelRaskin> Well, you can just merge your changes every time…
<MichaelRaskin> But yes, not so nice
<MichaelRaskin> I guess you have a problem related to your overlay being visible to user but not root
<joepie91> the thing I gisted above is in my system config
<MichaelRaskin> But I don't use overlays so I do not know the details
<MichaelRaskin> Ouch
<MichaelRaskin> with all the instances of pythonPackages things can indeed get messy very quickly
<__monty__> joepie91: Have you tried overriding python3Packages explicitly? Maybe it's still using the original python37Packages?
<joepie91> __monty__: hmm, what do you mean with "the original python37Packages"?
<__monty__> What I'm thinking is maybe the alias is resolved before you override its source, iyuwitts.
<joepie91> __monty__: welp, that seems to have been it
* __monty__ takes a bow
<__monty__> I'm here all day, ladies and gents!
<joepie91> anyhow, the breaking-the-package works now
<joepie91> unfortunately the fixing-the-package still does not
<joepie91> how do I correctly override a specific pythonPackage?
<joepie91> using // just results in "attempt to call something which is not a function but a set"
<joepie91> calling .override on python3Packages results in "anonymous functioin ... called with unexpected argument 'pycurl'"
<joepie91> function*
<joepie91> thanks
<__monty__> I think yours'll work though. But you have to pass overrideAttrs a function rather than a set.
<joepie91> __monty__: well, I've gotten the override to work. unfortunately it seems to ignore the `doCheck` attribute override
<joepie91> setting pycurl to null there will make the dep go away
<joepie91> but with this exact code, it will still just try to run the post-install tests...
<joepie91> oh
<joepie91> there is a separate doInstallCheck
<joepie91> there we go, now it works
<joepie91> __monty__: thanks for the help, I've posted the workaround in the thread: https://github.com/NixOS/nixpkgs/issues/55945#issuecomment-546612758
drakonis has joined #nixos-chat
drakonis has quit [Read error: Connection reset by peer]
drakonis has joined #nixos-chat
drakonis_ has quit [Ping timeout: 240 seconds]
aleph- has joined #nixos-chat
<joepie91> welp. upgrade to 19.09 somehow broke the doubleclick on my rollermouse
pie_ has quit [Ping timeout: 245 seconds]
drakonis_ has joined #nixos-chat
drakonis has quit [Ping timeout: 245 seconds]
<joepie91> gchristensen: possibly of interest to you also: https://github.com/NixOS/nixpkgs/pull/70520#issuecomment-546618498
drakonis has joined #nixos-chat
drakonis_ has quit [Ping timeout: 268 seconds]
drakonis_ has joined #nixos-chat
drakonis has quit [Ping timeout: 246 seconds]
drakonis has joined #nixos-chat
<joepie91> whee, and another bug: https://github.com/NixOS/nixpkgs/issues/72035
ivan has joined #nixos-chat
<__monty__> joepie91: Np, glad I could help.
<__monty__> gchristensen: Do you run {^-^}? Looks like it's down.
<aleph-> Alright pgp is kinda a pain
<gchristensen> pgp sucks :(
<gchristensen> __monty__: thanks, forgot to fix it earlier
<aleph-> I'm just using it for pass and ssh
<aleph-> That's it
<aleph-> And honestly I just want to be able to use a backed up subkey on my laptop instead of my yubikey if the yubikey isn't inserted for pass
<aleph-> But alas every time with out fail "please insert card"
waleee-cl has quit [Quit: Connection closed for inactivity]
<infinisil> aleph-: You probably mean gpg right?
<aleph-> Yah, right
vesper11 has joined #nixos-chat
vesper has quit [Ping timeout: 264 seconds]
<etu> but gpg is fun...
{^_^} has joined #nixos-chat
<etu> hmm
<etu> Remember that we switch timezone tonight
<etu> CEST -> CET
<gchristensen> extra hour of sleep?
<etu> yes
<gchristensen> woooo!
<etu> Good timing right?
<drakonis> :o we're almost at 200k commits now
<gchristensen> :O
<drakonis> as of right now, we're at 198998 commits
<drakonis> this week, 1262 commits were merged, so it should take a little less than a week to reach the big 200k
<gchristensen> :O
<infinisil> etu: Nice!
<infinisil> drakonis: With the hackathon tomorrow maybe not that long :P
<drakonis> oh nice.
<drakonis> will it be streamed?
lucus16 has joined #nixos-chat
drakonis1 has joined #nixos-chat
drakonis2 has joined #nixos-chat
__monty__ has quit [Quit: leaving]
drakonis_ has quit [Ping timeout: 246 seconds]
drakonis1 has quit [Ping timeout: 276 seconds]
<infinisil> drakonis: Well people will just be hacking all the time I think, not sure if that's even stream-worthy
<drakonis> i'm curious to see what will come out of it
drakonis has quit [Quit: WeeChat 2.6]
<aleph-> heh
<aleph-> neat
<aleph-> Man dang crypto this week.
<aleph-> Now I'm futzing with getting something work with openssl
drakonis has joined #nixos-chat