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
MidAutumnHotaru1 has quit [Quit: Quit 啾]
MidAutumnHotaru1 has joined #nixos
Qwerky has joined #nixos
<viric> clever: ah good
<clever> viric: the a.out has a similar limitation to cygwin
<clever> viric: for complex reasons (which may have since been fixed?), cygwin cant use fork(), so it emulates fork, by spawning a new proc, then copying all data over! lol
<viric> clever: nevertheless I understood that if I want to build a software to compare two versions of the same lib at once.... I'll have to wrap them statically-linked in a shared object for which I write the visible symbols
<viric> clever: I know that cygwin thing, yes. It's pretty fast though, compared to the superslow windows process spawn
<clever> viric: but for that hack to work, the libs must load to the same addr each time, which means avoiding the OS doing automatic relocation, so every dyn lib in cygwin must have its addr assigned, and managed centrally
<viric> clever: I know, I know, that /etc/nextaddr thing trick used in nix
<clever> ah
<viric> They basically lack relocation
<clever> yeah
<viric> for their fork trick to work
<viric> amazingly they made the whole thing 'work' with 'that' package manager :)
<viric> by 'work' it means that it breaks, and then you go reinstall all over.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #116993 → wormhole-william: 1.0.4 -> 1.0.5 → https://github.com/NixOS/nixpkgs/pull/116993
<matthewcroughan_> gchristensen: woohoo, can you reach this? https://hydra.nix.how/
<matthewcroughan_> ipv6 only
<matthewcroughan_> Set up traefik in nix and got it all working/proxied thanks to some of bqv's configs.
<clever> viric: ive also been working on some open-source drivers for the rpi, and can get composite video up with minimal help from the firmware: https://cdn.discordapp.com/attachments/820789807655157800/822286957382991923/20210318_225757.jpg
<matthewcroughan_> gchristensen: is it possible to add users to the Hydra DB declaratively?
Dr8128 has quit [Ping timeout: 240 seconds]
dongcarl has joined #nixos
<matthewcroughan_> I know you hate the ensureUsers options
<viric> clever: ah good
<viric> clever: I tried to get some patches to ffmpeg for the rpi (mmal) but not succesful
<clever> viric: the h264 stuff has moved over to the v4l api
<viric> it's mjpeg decoding
<unclechu> yorick: here is what i ended up with if you are interested:
ambroisie has quit [Quit: Bye.]
<unclechu> yorick: so i didn’t even have to `import`
<viric> clever: I need to decode mjpeg from the usb webcam and encode to h264. 1080p. And the v4l api forces a memcpy of the raw picture there
<viric> clever: from v4l usb webcam mjpeg frame, memcpy to the v4l m2m decoder, then memcpy the result to the v4l m2m encoder...
<viric> it's a mess
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #116994 → yabasic: init at 2.89.1 → https://github.com/NixOS/nixpkgs/pull/116994
<clever> specifically, the dot graph
lordcirth has quit [Remote host closed the connection]
ambroisie has joined #nixos
<colemickens> I'm really lost on what most hydra folks are doing about restricted mode
lordcirth has joined #nixos
<viric> clever: I understand, yes. But do you think that the buffers are not copied?
<clever> viric: i would have expected the api to allow writing results into the other devices buffer
<viric> I don't know how that can be done
<clever> viric: the old omx api was crazy good at linking components (like gstreamer) and sharing buffers automagically
<viric> Take a vaapi path
<viric> mjpeg in memory -> upload to gpu, mjpeg decoding, passing pointer to the h264 encoder -> download to memory. How can that be done with v4l2 m2m?
grimvar_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #116995 → yggdrasil: 0.3.15 -> 0.3.16 → https://github.com/NixOS/nixpkgs/pull/116995
<clever> viric: on the whole VC4 line, the "gpu mem" isnt special, and is basically just a partition
<viric> clever: in 'mmal' they had a particular opaque buffer format that would be optimal, I think.
<viric> otherwise you have to settle to a specific pixfmt
grawlinson has left #nixos ["WeeChat 3.1"]
<clever> viric: in omx, you could cross-link components, like mjpeg decode, and h264 encode, and the library would magically figure out when things can stay within the gpu
<clever> *looks*
mbrgm has quit [Ping timeout: 244 seconds]
mbrgm has joined #nixos
<viric> maybe in rpi m2m it works close to optimal. I don't think it's so easy with other gpus.
grimvar has quit [Ping timeout: 264 seconds]
<viric> but I gave up with rpi for this... for the price, I bought a 2nd hand celeron that can do a lot more work.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #116996 → yq-go: 4.6.1 -> 4.6.2 → https://github.com/NixOS/nixpkgs/pull/116996
<clever> cant find the old omx docs
Dr8128 has joined #nixos
justanotheruser has quit [Ping timeout: 265 seconds]
<veleiro> hello
<veleiro> what's the nix 2.4 tag in github?
orivej has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @sternenseemann opened pull request #116997 → mariadb-connector-c: correct license, lgpl 2.1 or later → https://github.com/NixOS/nixpkgs/pull/116997
apache8080 has joined #nixos
managarmr1 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @tehnick opened pull request #116998 → eiskaltdcpp: remove build dependency from boost → https://github.com/NixOS/nixpkgs/pull/116998
ahmedelgabri has joined #nixos
supersandro2000 has quit [Disconnected by services]
supersandro2000 has joined #nixos
Dr8128 has quit [Ping timeout: 256 seconds]
ahmedelgabri has quit [Ping timeout: 240 seconds]
<gchristensen> matthewcroughan_: I can't reach it, I don't have working ipv6 :(
<gchristensen> matthewcroughan_: also, no, there isn't -- but I'd really like that to be possible. you could use ldap or something if you're super facny.
<matthewcroughan_> We'll give you an ipv6 tunnel if you want lol
<matthewcroughan_> mwuhaha
<matthewcroughan_> One downside, there's lots of dangerous javascript that will root your machine.
<gchristensen> lol
<{^_^}> [nixpkgs] @r-ryantm opened pull request #116999 → belr: 4.3.2 -> 4.4.34 → https://github.com/NixOS/nixpkgs/pull/116999
<{^_^}> [nixpkgs] @mweinelt merged pull request #112701 → python3Packages.starlette: 0.13.8 -> 0.14.2 → https://github.com/NixOS/nixpkgs/pull/112701
managarmr1 has joined #nixos
STERNI is now known as sterni
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #115316 → [20.09] botan2: 2.17.2 -> 2.17.3 → https://github.com/NixOS/nixpkgs/pull/115316
<{^_^}> [nixpkgs] @mweinelt merged pull request #115625 → zstd: 1.4.8 -> 1.4.9 → https://github.com/NixOS/nixpkgs/pull/115625
chaoflow has quit [Ping timeout: 244 seconds]
addcn has quit [Ping timeout: 276 seconds]
addcn has joined #nixos
<{^_^}> [nixpkgs] @rassmike opened pull request #117000 → passage: init at 0.1.0 → https://github.com/NixOS/nixpkgs/pull/117000
rajivr has joined #nixos
dbmikus has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #111142 → activemq: 5.16.0 -> 5.16.1 → https://github.com/NixOS/nixpkgs/pull/111142
<{^_^}> [nixpkgs] @mweinelt merged pull request #111133 → batik: 1.13 -> 1.14 → https://github.com/NixOS/nixpkgs/pull/111133
tomberek has joined #nixos
dbmikus has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #116323 → [20.09] git-big-picture: 0.10.1 -> 1.0.0 (fixes CVE-2021-3028) → https://github.com/NixOS/nixpkgs/pull/116323
apache8080 has quit [Quit: WeeChat 1.9.1]
slack1256 has quit [Remote host closed the connection]
sterni is now known as STERNI
<supersandro2000> matthewcroughan_: wom
<supersandro2000> so graham, why does hydra still use momentjs?
<supersandro2000> also matthewcroughan_ I get csp eval errors
<supersandro2000> and a 404 for the faveicon
<matthewcroughan_> supersandro2000: to nix.how?
<matthewcroughan_> Oh yeah, lol.
<supersandro2000> yeah
<matthewcroughan_> Yeah this is just completely testing out traefik
<supersandro2000> you know whats cool
<matthewcroughan_> I can't believe how simple it was once I actually read nixos/tests/traefik
<supersandro2000> your hydra loads fast
<hexa-> supersandro2000: usually because nobody invested the effort to migrate the codebase?!
sangoma has quit [Quit: WeeChat 3.1]
LOVESEGFAULT is now known as lovesegfault
<supersandro2000> you know I was just mocking him.
ASHKITTEN is now known as ashkitten
<hexa-> please don't do that in public channels
<hexa-> its easy to misinterpret the tone of written text
<gchristensen> I'd love a PR improving it :)
<hexa-> supersandro2000: there you go!
<matthewcroughan_> supersandro2000: quick because it's not doing anything :D
<matthewcroughan_> running on a raspberry pi with 512MB of Ram
<{^_^}> [nixpkgs] @mweinelt merged pull request #115472 → glibc: 2.32-37 -> 2.32-39 → https://github.com/NixOS/nixpkgs/pull/115472
ADISBLADIS is now known as adisbladis
<{^_^}> [nixpkgs] @blaggacao opened pull request #117001 → doc: clarify dep spec into → https://github.com/NixOS/nixpkgs/pull/117001
<matthewcroughan_> cole-h is the masochist writing the perl :D
<supersandro2000> well, I would need to setup a hydra to test that
<supersandro2000> but I am currently really busy with writing bash-completion scripts
<gchristensen> hah
<supersandro2000> well, I consider when I have free time
<gchristensen> thanks :)
<supersandro2000> (aka probably not this century)
<gchristensen> tell me about it
<supersandro2000> well, for example I just found https://github.com/mhinz/vim-galore
<supersandro2000> so I am probably looking at everything in there tomorrow
<supersandro2000> for example https://github.com/mhinz/vim-galore#saner-ctrl-l is really handy
<matthewcroughan_> I just built Android 11 (LineageOS 18.1) for my phone using Robotnix.
<matthewcroughan_> I'm over the moon with that, great fun.
<matthewcroughan_> All I had to do was find my kernel sources for the device from Xiaomi, replace 5 strings.
<supersandro2000> did you boot it already?
<matthewcroughan_> yeah
<matthewcroughan_> runs fine, everything works
<supersandro2000> if it builds it does not mean it boots
<matthewcroughan_> total nix file lol
<supersandro2000> LTE, VoLTE, Bluetooth, all Camera modes?
<matthewcroughan_> Now, all camera modes I have yet to check. But bluetooth and lte, yes.
<supersandro2000> but VoLTE!?
Agustin2021 has joined #nixos
<matthewcroughan_> We don't have VoLTE here in the UK, I've never used it.
<matthewcroughan_> AFAIK we don't anyway
<supersandro2000> yeah, I don't even know if I can use it
<supersandro2000> but on XDA VoLTE is the number one question for my phones
<supersandro2000> but can it turn on VoLTE!?
<matthewcroughan_> the fingerprint on display works much better than the crap I got from XDA, someone has definitely worked on that
<matthewcroughan_> supersandro2000: I remember seeing so much spam about VoLTE on the XDA forums.
<supersandro2000> yeah, yeah
<supersandro2000> good old times
<supersandro2000> not on all phones features get better. There are enough where almost all things get worse
<Agustin2021> Hey, I know this is kinda random but, how would you maximize your chances to get a first job as Data Analyst?
<gchristensen> Agustin2021: no idea, that is pretty off topic for here, sorry :)
<Agustin2021> sorry too
Agustin2021 has quit [Client Quit]
Agustin2021 has joined #nixos
<simpson> This is kind of a function of a random variable, but is there any interesting overlap between Nix and data analytics? Like, does anybody put databases into the Nix store?
Dr8128 has joined #nixos
<matthewcroughan_> gchristensen: is it possible to make hydra use a different disk for its stuff?
<gchristensen> it *might* be possible ... but I sort of doubt it, it isgoing to want /nix to be /nix I think
<matthewcroughan_> nix build --store works fine.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #117002 → caf: 0.18.0 -> 0.18.1 → https://github.com/NixOS/nixpkgs/pull/117002
<matthewcroughan_> So why can't we just hotwire all hydra commands to have that?
<{^_^}> [nixpkgs] @tomberek merged pull request #116995 → yggdrasil: 0.3.15 -> 0.3.16 → https://github.com/NixOS/nixpkgs/pull/116995
<gchristensen> yeah, it might be possible, but it links to the nix c++ libraries to orchestrate the builds
Chiliparrot has quit [Ping timeout: 240 seconds]
<matthewcroughan_> gchristensen: where would I hotwire it?
<gchristensen> maybe try adding NIX_STORE=... to all the systemd service environments
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116997 → mariadb-connector-c: correct license, lgpl 2.1 or later → https://github.com/NixOS/nixpkgs/pull/116997
Chiliparrot has joined #nixos
<matthewcroughan_> gchristensen: what is NIX_DATA_DIR btw
<gchristensen> oh, hah, o course
<gchristensen> of course hydra works like this
<matthewcroughan_> ? :D
<gchristensen> but I think it won't produce binaries that can go to /nix
<matthewcroughan_> did you just test it as working?
<gchristensen> no
<gchristensen> sorry, maybe we can chat tomorrow? I'm prett ytired :)
<matthewcroughan_> gchristensen: me too :D
<matthewcroughan_> thanks immensely for the time
sigmundv__ has joined #nixos
delan has quit [Quit: ZNC - http://znc.in]
sigmundv_ has quit [Read error: Connection reset by peer]
delan has joined #nixos
<matthewcroughan_> can a nixos container have a different /nix/store?
<matthewcroughan_> could just get a nixos-container to run a hydra-server and tell it to use its nix store in /mnt/hdd1/
TAZJIN is now known as tazjin
<{^_^}> [nixpkgs] @r-ryantm opened pull request #117003 → bind: 9.16.12 -> 9.16.13 → https://github.com/NixOS/nixpkgs/pull/117003
m0rphism has quit [Ping timeout: 264 seconds]
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
Agustin2021 has quit [Quit: Connection closed]
missionformilk has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116994 → yabasic: init at 2.89.1 → https://github.com/NixOS/nixpkgs/pull/116994
dbmikus has joined #nixos
gustavderdrache has quit [Quit: Leaving.]
lytedev has quit [Ping timeout: 265 seconds]
lordcirth has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @mweinelt merged pull request #115439 → [20.09] glib: 2.64.5 -> 2.64.6 → https://github.com/NixOS/nixpkgs/pull/115439
<{^_^}> [nixpkgs] @mweinelt merged pull request #116280 → [20.09] libtiff: fix two security issues → https://github.com/NixOS/nixpkgs/pull/116280
<tomberek> supersandro2000 thoughts on starting to add tests like this: https://github.com/tomberek/nixpkgs/commit/47c48e041786dfe21042e06ac4dd264373c7c86a ?
h0m1 has quit [Ping timeout: 244 seconds]
sss2 has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @mschwaig opened pull request #117004 → openblas: apply patch to prevent SIGILL on aarch64 → https://github.com/NixOS/nixpkgs/pull/117004
sobet[m] has joined #nixos
Emantor has quit [Quit: ZNC - http://znc.in]
Qwerky has quit [Remote host closed the connection]
h0m1 has joined #nixos
Emantor has joined #nixos
<supersandro2000> tomberek: fine for me to make sure cli tools at least start.
<supersandro2000> not sure if checkPhase or passthru should be used
<tomberek> add them to existing r-ryantm PRs or independent?
<tomberek> i think checkPhase is built-in tests from the project, passthru is more like the stuff I would run when reviewing a PR.
<supersandro2000> I think it would be better if you created a new PR and closed r-ryantm or add closes #XXX to the body
<supersandro2000> I think I have seen both
<{^_^}> [nixpkgs] @tomberek merged pull request #116996 → yq-go: 4.6.1 -> 4.6.2 → https://github.com/NixOS/nixpkgs/pull/116996
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116960 → python3Packages.imbalanced-learn: 0.7.0 -> 0.8.0 → https://github.com/NixOS/nixpkgs/pull/116960
<{^_^}> [nixpkgs] @tomberek opened pull request #117005 → yq-go: add simple test → https://github.com/NixOS/nixpkgs/pull/117005
Qwerky has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116963 → inchi: 1.05 -> 1.06 → https://github.com/NixOS/nixpkgs/pull/116963
<{^_^}> [nixpkgs] @tomberek merged pull request #116993 → wormhole-william: 1.0.4 -> 1.0.5 → https://github.com/NixOS/nixpkgs/pull/116993
ris has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116968 → python3Packages.rdkit: 2020.09.3 -> 2020.09.5 → https://github.com/NixOS/nixpkgs/pull/116968
<{^_^}> [nixpkgs] @tomberek merged pull request #116990 → tfsec: 0.39.8 -> 0.39.10 → https://github.com/NixOS/nixpkgs/pull/116990
patagonicus8 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116972 → boltbrowser: init at 2.0 → https://github.com/NixOS/nixpkgs/pull/116972
<{^_^}> [nixpkgs] @tomberek merged pull request #116991 → tickrs: 0.14.3 -> 0.14.4 → https://github.com/NixOS/nixpkgs/pull/116991
patagonicus has quit [Ping timeout: 256 seconds]
patagonicus8 is now known as patagonicus
codygman__ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #116989 → terracognita: 0.6.0 -> 0.6.2 → https://github.com/NixOS/nixpkgs/pull/116989
<{^_^}> [nixpkgs] @r-ryantm opened pull request #117006 → aws-vault: 6.2.0 -> 6.3.0 → https://github.com/NixOS/nixpkgs/pull/117006
Qwerky_ has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #116987 → swego: 0.92 -> 0.93 → https://github.com/NixOS/nixpkgs/pull/116987
mkaito has quit [Quit: WeeChat 3.1]
Qwerky has quit [Ping timeout: 246 seconds]
dbmikus has quit [Ping timeout: 240 seconds]
mtr has quit [Quit: WeeChat 2.9]
aasg has quit [Ping timeout: 260 seconds]
ahmedelgabri has joined #nixos
aasg has joined #nixos
sigmundv__ has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #116988 → telegraf: 1.17.3 -> 1.18.0 → https://github.com/NixOS/nixpkgs/pull/116988
Qwerky_ has quit [Remote host closed the connection]
<colemickens> any tips for configuring hydra to use a aarch64-linux builder?
<colemickens> It sees the builder, it knows it handles aarch64-linux and yet my jobs with aarch64-linux stuff all fail with "unsupported system type"?
kaliumxyz has quit [Ping timeout: 256 seconds]
ahmedelgabri has quit [Ping timeout: 240 seconds]
dbmikus has joined #nixos
<tomberek> colemickens: i did this once, don't remember having difficulties. Does the machine have a defined system?
<colemickens> tomberek: yea, I defined system and systems for it.
<colemickens> tomberek: and root can ssh to the machine without a password or key passphrase.
<colemickens> ah, I might be missing some features
<tomberek> ah, i also remember using features to ensure certain hardware was connected
<colemickens> still hasn't helped
<colemickens> I wish nix cared more about being usable
<colemickens> this whole "why aren't my builders being used" is a sad sad meme at this point
zebrag has quit [Quit: Konversation terminated!]
dbmikus has quit [Ping timeout: 264 seconds]
zebrag has joined #nixos
Qwerky has joined #nixos
<veleiro> is the nix version with flakes, on https://github.com/nixos/nix just the master branch?
<veleiro> nevermind, the derivation is in nixpkgs
Qwerky has quit [Ping timeout: 240 seconds]
alexherbo2 has quit [Ping timeout: 256 seconds]
<colemickens> lol its all down to the not at all confusin buildMachinesFiles behavior
<colemickens> hydra will happily show you machines registered to your local nix, even if it's just ignoring them, very cool
<colemickens> how is the host kye verification failing now? I use this as a remote builder all the time
<gchristensen> note hydra runs as hydra-queue-runner
<gchristensen> does that user have the authorized host key?
<veleiro> hi tomberek! i'm tgunnoe on GH, sorry for all the reviews on sourcehut PR!
<veleiro> only thing that hasnt been figured out is the builds with the api
cole-h has joined #nixos
<veleiro> drew has been very helpful but i had to pause momentarily
<gchristensen> colemickens: ^
teto has quit [Ping timeout: 264 seconds]
<colemickens> I realize I'm going to have to provision a key for this either way, but it sounds like on top of that there's a manual step of accepting the host key as that user?
<veleiro> arch user repo doesnt have any 'nix-git' or flakes support version of nix at the moment, im writing an updated version of nix-git so that arch and manjaro users can experience flakes
<colemickens> I guess if that's it, I'll update the wiki and wonder how anyone else has ever done this
<colemickens> thanks for the info/ping gsc
<gchristensen> colemickens: the machines file (for hydra, nix ignores this except in master) can contain the host's host key base64 encoded as the 8th field
<gchristensen> ie: echo ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEjBFLoalf56exb7GptkI151ee+05CwvXzoyBuvzzUbK | base64 -w0
<gchristensen> heading to bed :) g'night, I can help more another time
Dr8128 has quit [Ping timeout: 246 seconds]
<veleiro> goodnight
<colemickens> cool, that helps as well, much appreciate, adios
zebrag has quit [Ping timeout: 265 seconds]
dbmikus has joined #nixos
missionformilk has quit [Ping timeout: 264 seconds]
dbmikus has quit [Ping timeout: 246 seconds]
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
pushqrdx has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #117007 → bzrtp: 4.4.9 -> 4.4.34 → https://github.com/NixOS/nixpkgs/pull/117007
justanotheruser has joined #nixos
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
codygman__ has joined #nixos
AlpineLlama has joined #nixos
orivej has joined #nixos
johnw has quit [Quit: ZNC - http://znc.in]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #117008 → circleci-cli: 0.1.15108 -> 0.1.15149 → https://github.com/NixOS/nixpkgs/pull/117008
Supersonic112 has joined #nixos
Supersonic has quit [Ping timeout: 246 seconds]
Supersonic112 is now known as Supersonic
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
nrh^ has quit []
dsrt^ has joined #nixos
Shiranai has quit [Quit: Connection closed]
endformationage has quit [Quit: WeeChat 2.9]
marsh has quit [Ping timeout: 265 seconds]
marsh has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #117009 → crow-translate: 2.8.0 -> 2.8.1 → https://github.com/NixOS/nixpkgs/pull/117009
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
orivej has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @siraben opened pull request #117011 → treewide (darwin): fix or enable darwin build for many packages (7) → https://github.com/NixOS/nixpkgs/pull/117011
redcedar[m] has joined #nixos
xO1 has joined #nixos
dbmikus has joined #nixos
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
dbmikus has quit [Ping timeout: 240 seconds]
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
oxalica has quit [Ping timeout: 240 seconds]
hke_ has quit [Read error: Connection reset by peer]
oxalica has joined #nixos
hke has joined #nixos
dbmikus has joined #nixos
dbmikus has quit [Ping timeout: 256 seconds]
<kini> When I upgraded from NixOS 20.09.3223 to 20.09.3301 my `services.udev.extraHwdb` stopped working.
<kini> Anyone have any suggestions on how to track down the issue? If it were a nixpkgs package I could use `git bisect` but I'm not sure how to do it at the system level.
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/4077d9e705d (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/8a35e0bf675 (from 9 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<{^_^}> [hydra] @Mic92 opened pull request #895 → hydra-send-stats: fix imports → https://github.com/NixOS/hydra/pull/895
simba1 has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg merged pull request #116981 → shards: 0.14.0 -> 0.14.1 → https://github.com/NixOS/nixpkgs/pull/116981
<redcedar[m]> Hey folks, I've got a system that suddenly won't boot. Need some pointers. I restarted and it selected the latest config from the grub menu, but stalled on boot. The only read out is "EFI stub: Loaded initrd from command line option". Rebooting from an old configuration has no effect. How should I try to fix this?
krkini has joined #nixos
respawn_ has joined #nixos
kini has quit [Ping timeout: 264 seconds]
<unclechu> hey, how do i release my haskell package on nixpkgs? i see that hackage database is automatically generated. how does a new package goes in there?
<unclechu> i just published my package on hackage recently. what do i do to make it appear in nixpkgs too?
<krkini> Hmm, odd. `services.udev.extraHwdb` works fine on a different machine with the latest NixOS 20.09.3505 .
Guest1 has joined #nixos
<Guest1> anybody know how to change default behaviour of xsession.windowmanagers.xmoonad? It launches xterm terminals and keyboard not responding. launcing with custom xinitrc exec xmonad works just fine.
<Guest1> I tried looking for something like xprofile xession
addcn has quit [Read error: Connection reset by peer]
<krkini> *facepalm* Unbelievable. Somehow I'd managed to screw up the indentation of my `services.udev.extraHwdb` string on the problematic machine. Never mind...
krkini has quit [Quit: bye]
cole-h has quit [Ping timeout: 264 seconds]
codygman__ has quit [Ping timeout: 246 seconds]
kini has joined #nixos
palo1 has joined #nixos
gurjeet has joined #nixos
MidAutumnHotaru1 has quit [Quit: Quit 啾]
palo has quit [Ping timeout: 264 seconds]
palo1 is now known as palo
jbarthelmes[m] has joined #nixos
MidAutumnHotaru1 has joined #nixos
neiluj has quit [Ping timeout: 246 seconds]
Negher has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #117008 → circleci-cli: 0.1.15108 -> 0.1.15149 → https://github.com/NixOS/nixpkgs/pull/117008
neiluj has joined #nixos
simba1 has quit [Ping timeout: 264 seconds]
oxalica has quit [Remote host closed the connection]
simba1 has joined #nixos
oxalica has joined #nixos
simba1 has quit [Ping timeout: 264 seconds]
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/4077d9e705d (from 6 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
simba1 has joined #nixos
simonpe^^ has joined #nixos
enick_326 is now known as JJJollyjim
<siraben> unclechu: just wait a bit, apeti updates the hackage packages every week or so
<siraben> peti I mean
jmeredith has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @fabaff merged pull request #116848 → findomain: 3.1.0 -> 4.0.1 → https://github.com/NixOS/nixpkgs/pull/116848
<{^_^}> [nixpkgs] @fabaff merged pull request #116832 → bettercap: 2.30 -> 2.30.2 → https://github.com/NixOS/nixpkgs/pull/116832
PIE_ is now known as pie_
<unclechu> siraben: ok, thanks
<unclechu> siraben: so as i assume every new package gets into the list automatically by some script?
simba1 has quit [Ping timeout: 265 seconds]
simba1 has joined #nixos
<siraben> unclechu: which package did you publish on hackage?
<siraben> we track stackage nightly
<{^_^}> #116965 (by peti, 11 hours ago, open): Update Haskell package set to Stackage Nightly 2021-03-19 (plus other fixes)
<pie_> clever: not sure about this off the top of my head, is there a simple way to pin nixpkgs in a configuration.nix for sharing a repro? is is the way just to give a NIX_PATH command that uses a github tar.xz
<siraben> nice! yeah, to the best of my knowledge the haskellPackages is automatically generated
sangoma has joined #nixos
bitmapper has quit [Quit: Connection closed for inactivity]
kenran has joined #nixos
respawn_ has quit [Quit: Leaving]
Negher has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #115678 → coreutils: enable tests for non-standard store path → https://github.com/NixOS/nixpkgs/pull/115678
simba1 has quit [Ping timeout: 240 seconds]
Guest1 has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @FRidh merged pull request #116784 → cacert: add download mirrors for certdata2pem.py → https://github.com/NixOS/nixpkgs/pull/116784
simba1 has joined #nixos
Linus[m]1 has quit [Ping timeout: 240 seconds]
omnigoat has quit [Ping timeout: 240 seconds]
Linus[m]11 has joined #nixos
Linus[m]11 has joined #nixos
btdmaster[m] has joined #nixos
mdash has quit [Ping timeout: 244 seconds]
lohfu has quit [Ping timeout: 244 seconds]
btdmaster[m] has joined #nixos
btdmaster[m] has quit [Ping timeout: 240 seconds]
is_null has quit [Ping timeout: 240 seconds]
nahamu has quit [Ping timeout: 240 seconds]
nahamu has joined #nixos
omnigoat has joined #nixos
is_null has joined #nixos
jol_ has joined #nixos
jol has quit [Quit: ZNC 1.7.5 - https://znc.in]
aanderse has quit [Ping timeout: 240 seconds]
johnnyfive has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #116793 → python3Packages.urllib3: remove obsolete SSL dependencies → https://github.com/NixOS/nixpkgs/pull/116793
<{^_^}> [nixpkgs] @FRidh merged pull request #116766 → openldap: 2.4.57 -> 2.4.58 → https://github.com/NixOS/nixpkgs/pull/116766
|beo| has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #116709 → harfbuzz: 2.7.4 -> 2.8.0 → https://github.com/NixOS/nixpkgs/pull/116709
<{^_^}> [nixpkgs] @FRidh merged pull request #116305 → libipt: 2.0.3 -> 2.0.4 → https://github.com/NixOS/nixpkgs/pull/116305
oharvey_ has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #116246 → cryptsetup: 2.3.4 -> 2.3.5 → https://github.com/NixOS/nixpkgs/pull/116246
<{^_^}> [nixpkgs] @FRidh merged pull request #115887 → bison: 3.7.5 -> 3.7.6 → https://github.com/NixOS/nixpkgs/pull/115887
<{^_^}> [nixpkgs] @FRidh merged pull request #115850 → [staging] python3Packages.more-itertools: 8.6.0 -> 8.7.0 → https://github.com/NixOS/nixpkgs/pull/115850
SomeoneS1 has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #115843 → python3Packages.dateparser: run tests → https://github.com/NixOS/nixpkgs/pull/115843
prusnak_ has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #115711 → vim: 8.2.1522 -> 8.2.2567 → https://github.com/NixOS/nixpkgs/pull/115711
<{^_^}> [nixpkgs] @FRidh merged pull request #115690 → waf: 2.0.20 -> 2.0.22 → https://github.com/NixOS/nixpkgs/pull/115690
<{^_^}> [nixpkgs] @FRidh merged pull request #115664 → unbound: 1.13.0 -> 1.13.1 → https://github.com/NixOS/nixpkgs/pull/115664
<{^_^}> [nixpkgs] @FRidh merged pull request #113959 → libcap: 2.47 -> 2.48 → https://github.com/NixOS/nixpkgs/pull/113959
johnnyfi- has quit [Ping timeout: 244 seconds]
aanderse has joined #nixos
|beowulf| has quit [Ping timeout: 240 seconds]
oharvey has quit [Ping timeout: 240 seconds]
prusnak has quit [Ping timeout: 240 seconds]
lvrp16 has quit [Ping timeout: 240 seconds]
mdash has joined #nixos
lvrp16 has joined #nixos
lvrp16 has joined #nixos
lvrp16 has quit [Changing host]
oharvey_ is now known as oharvey
prusnak_ is now known as prusnak
<{^_^}> [nixpkgs] @danieldk opened pull request #117012 → makemkv: 1.15.4 -> 1.16.3 → https://github.com/NixOS/nixpkgs/pull/117012
lohfu has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #112454 → elfutils: adds support for debuginfod → https://github.com/NixOS/nixpkgs/pull/112454
<{^_^}> [nixpkgs] @FRidh merged pull request #111970 → cc-wrapper: -nostdlib does not imply -nostdinc++ → https://github.com/NixOS/nixpkgs/pull/111970
FRidh has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #114880 → asciidoctor: 2.0.10 -> 2.0.12 → https://github.com/NixOS/nixpkgs/pull/114880
<{^_^}> [nixpkgs] @FRidh merged pull request #114978 → help2man: 1.47.17 -> 1.48.1 → https://github.com/NixOS/nixpkgs/pull/114978
<{^_^}> [nixpkgs] @FRidh merged pull request #102308 → libmpc: 1.2.0 -> 1.2.1 → https://github.com/NixOS/nixpkgs/pull/102308
Lord_of_Life has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #92420 → popt: 1.16 -> 1.18 → https://github.com/NixOS/nixpkgs/pull/92420
sephii has quit [Ping timeout: 240 seconds]
sephii has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #116237 → acl: 2.2.53 -> 2.3.0 → https://github.com/NixOS/nixpkgs/pull/116237
mdash has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @FRidh merged pull request #115899 → btrfs-progs: 5.10.1 -> 5.11 → https://github.com/NixOS/nixpkgs/pull/115899
<{^_^}> [nixpkgs] @FRidh merged pull request #115700 → xapian: 1.4.17 -> 1.4.18 → https://github.com/NixOS/nixpkgs/pull/115700
<{^_^}> [nixpkgs] @FRidh merged pull request #115647 → gnutar: 1.32 -> 1.34 → https://github.com/NixOS/nixpkgs/pull/115647
<{^_^}> [nixpkgs] @FRidh merged pull request #115629 → unixODBC: 2.3.7 -> 2.3.9 → https://github.com/NixOS/nixpkgs/pull/115629
<{^_^}> [nixpkgs] @FRidh merged pull request #115570 → sysstat: 12.3.2 -> 12.4.3 → https://github.com/NixOS/nixpkgs/pull/115570
orivej has joined #nixos
mdash has joined #nixos
hyper_ch_ has quit [Ping timeout: 256 seconds]
mdash has quit [Ping timeout: 244 seconds]
clerie has quit [Ping timeout: 240 seconds]
clerie_ has joined #nixos
mdash has joined #nixos
<pie_> how do I figure out what to pass to https://nixos.org/manual/nixos/stable/options.html#opt-services.xserver.displayManager.defaultSession ?
<pie_> im pretty sure defaultSession = "xfce"; should be working with autologin but it's not :/
<pie_> smh, worked now.. *shrug*
<pie_> and now it didnt work again?
zupo has joined #nixos
fc[m] has quit [Quit: Idle for 30+ days]
watersucks[m] has quit [Quit: Idle for 30+ days]
goibhniu has quit [Quit: Idle for 30+ days]
Helithumper[m] has quit [Quit: Idle for 30+ days]
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/f5e8bdd07d1 (from 16 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
<{^_^}> [nixpkgs] @fabaff opened pull request #117013 → python3Packages.iaqualink: init at 0.4.0 → https://github.com/NixOS/nixpkgs/pull/117013
zupo_ has joined #nixos
zupo has quit [Ping timeout: 240 seconds]
sangoma has quit [Read error: Connection reset by peer]
jonringer has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @petabyteboy closed pull request #116802 → [20.09] gitlab: 13.6.7 -> 13.8.6 → https://github.com/NixOS/nixpkgs/pull/116802
<{^_^}> [nixpkgs] @petabyteboy reopened pull request #116802 → [20.09] gitlab: 13.6.7 -> 13.8.6 → https://github.com/NixOS/nixpkgs/pull/116802
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
leotaku has joined #nixos
vidbina has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed 195 commits to staging-next: https://git.io/Jmye3
<{^_^}> [nixpkgs] @FRidh opened pull request #117015 → Staging next → https://github.com/NixOS/nixpkgs/pull/117015
hyper_ch has joined #nixos
STERNI is now known as sterni
<{^_^}> [nixpkgs] @FRidh pushed 1000 commits to python-unstable: https://git.io/JmyvL
kini has quit [Remote host closed the connection]
kini has joined #nixos
m0rphism has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fendor has joined #nixos
<{^_^}> [nixpkgs] @vcunat opened pull request #117016 → lmdb: 0.9.25 -> 0.9.28 → https://github.com/NixOS/nixpkgs/pull/117016
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/f17621f6881 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/a6155fc19e3 (from 30 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @collares opened pull request #117017 → Revert "sage: remove duplicated pkgconfig" → https://github.com/NixOS/nixpkgs/pull/117017
benny has quit [Remote host closed the connection]
hke has quit [Read error: Connection reset by peer]
hke has joined #nixos
sangoma has joined #nixos
FLOKLI is now known as flokli
leotaku has quit [Ping timeout: 256 seconds]
Negher has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jluttine closed pull request #116999 → belr: 4.3.2 -> 4.4.34 → https://github.com/NixOS/nixpkgs/pull/116999
<{^_^}> [nixpkgs] @jluttine closed pull request #117007 → bzrtp: 4.4.9 -> 4.4.34 → https://github.com/NixOS/nixpkgs/pull/117007
est has joined #nixos
orivej has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @fabaff merged pull request #116827 → python38Packages.limnoria: 2021.01.15 -> 2021.03.13 → https://github.com/NixOS/nixpkgs/pull/116827
Dr8128 has joined #nixos
est31 has quit [Ping timeout: 268 seconds]
mallox has joined #nixos
leotaku has joined #nixos
<{^_^}> [nixpkgs] @cyplo opened pull request #117018 → genpass: 0.4.9 -> 0.4.12 → https://github.com/NixOS/nixpkgs/pull/117018
hke has quit [Quit: bye]
<{^_^}> [nixpkgs] @erictapen merged pull request #115971 → python3Packages.altair: propagate jinja2 as buildInput → https://github.com/NixOS/nixpkgs/pull/115971
<{^_^}> [nixpkgs] @misuzu closed pull request #116162 → python3Packages.httplib2: Fix tests on darwin → https://github.com/NixOS/nixpkgs/pull/116162
hke has joined #nixos
benny has joined #nixos
<{^_^}> [nixpkgs] @bjornfor merged pull request #116974 → [20.09] gsoap: 2.8.53 -> 2.8.108 → https://github.com/NixOS/nixpkgs/pull/116974
benny is now known as Guest96747
orivej has joined #nixos
<maralorn> Urks, niv on master is broken. https://hydra.nixos.org/build/139378343/nixlog/1/tail
johnnyfive has quit [Quit: I quit now.]
johnnyfive has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #116937 → pythonPackages.nbconvert: include templates in search paths → https://github.com/NixOS/nixpkgs/pull/116937
<simonpe^^> I'm writing a custom module, is it possible to require an option based on whether another option in the same module is set to a particular value? Like `config.mymodule = mkIf ...` but for options.mymodule.conditionalOption = mkIf config.mymodule.condition`
<{^_^}> [nixpkgs] @xfix opened pull request #117019 → snes9x-gtk: set license to unfreeRedistributable → https://github.com/NixOS/nixpkgs/pull/117019
<{^_^}> [nixpkgs] @bjornfor merged pull request #116461 → trompeloeil: 39 -> 40 → https://github.com/NixOS/nixpkgs/pull/116461
<{^_^}> [nixpkgs] @bjornfor merged pull request #115702 → xmlrpc_c: 1.51.06 -> 1.51.07 → https://github.com/NixOS/nixpkgs/pull/115702
lsix1 has joined #nixos
mallox has quit [Ping timeout: 264 seconds]
kmein has quit [Quit: ciao kakao]
kmein has joined #nixos
Guest96747 has quit [Quit: ZNC - https://znc.in]
neiluj has quit [Ping timeout: 265 seconds]
neiluj has joined #nixos
fuiltilt has quit [Quit: WeeChat 2.9]
<Reventlov> hey
<Reventlov> Can I replace https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/networking/ipcalc/default.nix (old, unmaintained) with https://gitlab.com/ipcalc/ipcalc or do I need to change the name in nixpkgs (e.g. ipcalc-ng)
<maralorn> simonpe^^: Do you want the option only to exist when the other one is activated? I am not sure that’s a good idea. What you can certainly do is write an assert that option 2 needs to be set when option 1 = true.
<{^_^}> [nixpkgs] @dotlambda opened pull request #117020 → [staging-20.09] popt: 1.16 -> 1.18 → https://github.com/NixOS/nixpkgs/pull/117020
<{^_^}> [nixpkgs] @petabyteboy merged pull request #116802 → [20.09] gitlab: 13.6.7 -> 13.8.6 → https://github.com/NixOS/nixpkgs/pull/116802
<{^_^}> [nixpkgs] @AmineChikhaoui opened pull request #117021 → add new Google Cloud image for the current release → https://github.com/NixOS/nixpkgs/pull/117021
alexherbo2 has joined #nixos
<simonpe^^> maralorn: yes I realized it'll be a problem when generating the documentation so I'm backing off on that idea, I'll just have to polish up my skills to "make illegal states unrepresentable"
teasea has quit [Quit: teasea]
<{^_^}> [nixpkgs] @doronbehar opened pull request #117022 → vim_configurable: Make disabling guiSupport easier → https://github.com/NixOS/nixpkgs/pull/117022
teasea has joined #nixos
vidbina has quit [Ping timeout: 240 seconds]
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
turlando has joined #nixos
<simonpe^^> maralorn: I was hoping as an alternative to do something like `mkOption { type = oneOf [ (submodule { type = strMatching "A"; }) (submodule { type = strMaching "B"; }) ]; }` but the behavior is not what I expect
Izorkin has joined #nixos
<{^_^}> [nixpkgs] @maralorn opened pull request #117023 → haskellPackages.niv: Try to fix build → https://github.com/NixOS/nixpkgs/pull/117023
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @BurNiinTRee opened pull request #117024 → steamPackages.steam: 1.0.0.68 -> 1.0.0.69 → https://github.com/NixOS/nixpkgs/pull/117024
<{^_^}> [nixpkgs] @stigtsp merged pull request #115481 → perlPackages.NetAsyncHTTP: 0.47 -> 0.48 → https://github.com/NixOS/nixpkgs/pull/115481
hiro98 has joined #nixos
turlando has quit [Ping timeout: 256 seconds]
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
Izorkin has joined #nixos
neiluj has quit [Ping timeout: 264 seconds]
neiluj has joined #nixos
le0taku has joined #nixos
leotaku has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @midchildan opened pull request #117025 → poke: fix darwin build → https://github.com/NixOS/nixpkgs/pull/117025
afreak has joined #nixos
turlando has joined #nixos
neiluj has quit [Ping timeout: 246 seconds]
neiluj has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #117026 → mat2: 0.12.0 -> 0.12.1 → https://github.com/NixOS/nixpkgs/pull/117026
ris has joined #nixos
cornfeedhobo has quit [Quit: ZNC - https://znc.in]
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/94166491939 (from 13 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
neiluj_ has joined #nixos
<neiluj_> hello! it's a bit silly but for some reason /dev/urandom is not present in my system. Any suggestions to resolve this?
<neiluj_> (the disk is encrypted with luks)
cornfeedhobo has joined #nixos
<neiluj_> nevermind, got it
hiro98 has quit [Quit: hiro98]
turlando has quit [Ping timeout: 260 seconds]
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/a99b2f4274f (from 25 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @fabaff closed pull request #112460 → python37Packages.mautrix: 0.8.12 -> 0.8.15 → https://github.com/NixOS/nixpkgs/pull/112460
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @cdepillabout merged pull request #116931 → haskellPackages.{hedgehog-classes, hgeometry, hgeometry-combinatorial}: unbreak → https://github.com/NixOS/nixpkgs/pull/116931
Darkmatter66 has joined #nixos
AlpineLlama has joined #nixos
corpix has quit [Remote host closed the connection]
corpix has joined #nixos
philr_ has quit [Ping timeout: 264 seconds]
teto has joined #nixos
<{^_^}> [nixpkgs] @maralorn merged pull request #117023 → haskellPackages.niv: Try to fix build → https://github.com/NixOS/nixpkgs/pull/117023
<{^_^}> [nixpkgs] @risicle merged pull request #116638 → minizinc: 2.5.3 -> 2.5.4 → https://github.com/NixOS/nixpkgs/pull/116638
oxalica has quit [Quit: oxalica]
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
oxalica has joined #nixos
Izorkin has joined #nixos
shmakes[m] has joined #nixos
mallox has joined #nixos
AlpineLlama has quit [Ping timeout: 260 seconds]
neiluj_ has quit [Ping timeout: 240 seconds]
neiluj has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @dotlambda merged pull request #116777 → appdaemon: fix astral dependency → https://github.com/NixOS/nixpkgs/pull/116777
neiluj has joined #nixos
neiluj_ has joined #nixos
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
<{^_^}> [nixpkgs] @dotlambda opened pull request #117027 → flashfocus: don't use python3Packages.callPackage → https://github.com/NixOS/nixpkgs/pull/117027
Izorkin has joined #nixos
mkaito has joined #nixos
mkaito has quit [Changing host]
mkaito has joined #nixos
Dr8128 has quit [Ping timeout: 246 seconds]
mikeplus64 has quit [Ping timeout: 256 seconds]
gregf has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann opened pull request #117028 → foot: 1.6.4 -> 1.7.0 → https://github.com/NixOS/nixpkgs/pull/117028
neiluj has joined #nixos
neiluj has quit [Changing host]
mikeplus64 has joined #nixos
mikeplus64 has quit [Changing host]
mikeplus64 has joined #nixos
acarrico has quit [Ping timeout: 265 seconds]
le0taku has quit [Quit: ZNC 1.8.2 - https://znc.in]
patagonicus has quit [Quit: The Lounge - https://thelounge.chat]
respawn_ has quit [Quit: Leaving]
patagonicus has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed to staging-next « python3Packages.sphinx: add missing dep packaging »: https://git.io/JmSOP
<{^_^}> [nixpkgs] @FRidh pushed 16 commits to python-unstable: https://git.io/JmS3s
jumper[m] has joined #nixos
<jumper[m]> Hi, I am trying to install a ca certificate on NixOS and it ends up in /etc/ssl/ca-certificates.crt, but firefox and chromium dont pick up on it automatically. Is that possible?
chaoflow has joined #nixos
<clever> jumper[m]: i think chrome and firefox ignore the host ca list by default, they ship internal lists
<clever> but there are options to restore the expected function
<tpw_rules> ^
<tpw_rules> at least they do by default on windows and macos
<tpw_rules> when i had this problem i just manually imported the cert into firefox. but i'm not sure what would be best to do in nix
<{^_^}> [nixpkgs] @petabyteboy merged pull request #116798 → gitlab: 13.8.5 -> 13.9.4 → https://github.com/NixOS/nixpkgs/pull/116798
<{^_^}> [nixpkgs] @maxeaubrey opened pull request #117029 → ell: 0.36 -> 0.38, iwd: 1.11 -> 1.12 → https://github.com/NixOS/nixpkgs/pull/117029
<{^_^}> [nixpkgs] @petabyteboy merged pull request #116801 → nixos/gitlab: add option for tls wrapper-mode smtp → https://github.com/NixOS/nixpkgs/pull/116801
mkaito has quit [Quit: WeeChat 3.1]
<jumper[m]> I'll try if certutil can fix it. Otherwise I'll give up and import manually :(
leotaku has joined #nixos
<{^_^}> [nixpkgs] @maxeaubrey opened pull request #117030 → networkmanager: 1.30.0 -> 1.30.2 → https://github.com/NixOS/nixpkgs/pull/117030
kaliumxyz has joined #nixos
griff_ has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/733b33a07ea (from 21 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @chvp opened pull request #117031 → mu: Fix included scripts not finding their dependencies → https://github.com/NixOS/nixpkgs/pull/117031
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116984 → skypeforlinux: 8.68.0.100 -> 8.69.0.77 → https://github.com/NixOS/nixpkgs/pull/116984
Vadrigar has joined #nixos
mdash has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117009 → crow-translate: 2.8.0 -> 2.8.1 → https://github.com/NixOS/nixpkgs/pull/117009
<{^_^}> [nixpkgs] @sternenseemann opened pull request #117032 → sks: build with OCaml 4.04 → https://github.com/NixOS/nixpkgs/pull/117032
chaoflow has quit [Quit: WeeChat 3.0.1]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117017 → Revert "sage: remove duplicated pkgconfig" → https://github.com/NixOS/nixpkgs/pull/117017
mdash has joined #nixos
AlpineLlama has joined #nixos
Dotz0cat_ has quit [Ping timeout: 264 seconds]
patagonicus has quit [Quit: The Lounge - https://thelounge.chat]
<{^_^}> [nixpkgs] @dotlambda opened pull request #117033 → unoconv: improve expression → https://github.com/NixOS/nixpkgs/pull/117033
ml| has quit [Quit: WeeChat 3.0]
patagonicus has joined #nixos
zebrag has joined #nixos
SomeoneS1 has quit [Ping timeout: 256 seconds]
Qwerky has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #117004 → openblas: apply patch to prevent SIGILL on aarch64 → https://github.com/NixOS/nixpkgs/pull/117004
neiluj_ has quit [Quit: leaving]
<{^_^}> [nixpkgs] @aanderse opened pull request #117034 → kodi.packages.jellyfin: init at 0.7.1, a few fixups → https://github.com/NixOS/nixpkgs/pull/117034
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #117035 → demjson,j2cli: add top level entry → https://github.com/NixOS/nixpkgs/pull/117035
ahmedelgabri has joined #nixos
bhoman has quit [Quit: WeeChat 2.8]
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #117004 → openblas: apply patch to prevent SIGILL on aarch64 → https://github.com/NixOS/nixpkgs/pull/117004
jmeredith has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #117037 → python3Packages.django_2: 2.2.18 -> 2.2.19 → https://github.com/NixOS/nixpkgs/pull/117037
<{^_^}> [nixpkgs] @veprbl merged pull request #116967 → pythonPackages.APScheduler: drop Py2K support → https://github.com/NixOS/nixpkgs/pull/116967
vidbina has joined #nixos
m4tsa_ has joined #nixos
m4ts has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #116767 → nq: 0.3.1 -> 0.4 → https://github.com/NixOS/nixpkgs/pull/116767
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117019 → snes9x-gtk: set license to unfreeRedistributable → https://github.com/NixOS/nixpkgs/pull/117019
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116314 → hidrd: init at unstable-2019-06-03 → https://github.com/NixOS/nixpkgs/pull/116314
gustavderdrache has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117025 → poke: fix darwin build → https://github.com/NixOS/nixpkgs/pull/117025
<{^_^}> [nixpkgs] @veprbl merged pull request #116528 → qtwebengine: use pure sandbox lib → https://github.com/NixOS/nixpkgs/pull/116528
Dotz0cat has joined #nixos
<{^_^}> [nixpkgs] @oxalica closed pull request #116748 → fcitx5: bump packages to fix positioning issue on wayland → https://github.com/NixOS/nixpkgs/pull/116748
Dr8128 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115380 → trealla: init at 1.7.65 → https://github.com/NixOS/nixpkgs/pull/115380
<{^_^}> [nixpkgs] @raboof opened pull request #117039 → gnucap: init at 20210107 → https://github.com/NixOS/nixpkgs/pull/117039
jonringer has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #116763 → magnetophonDSP.MBdistortion: fix build → https://github.com/NixOS/nixpkgs/pull/116763
<{^_^}> [nixpkgs] @tomberek merged pull request #116762 → sunwait: init at 20201026 → https://github.com/NixOS/nixpkgs/pull/116762
<{^_^}> [nixpkgs] @dotlambda opened pull request #117040 → mupdf: fix CVE-2021-3407 → https://github.com/NixOS/nixpkgs/pull/117040
<{^_^}> [nixpkgs] @nagy opened pull request #117041 → Aqbanking and Gwenhywfar update → https://github.com/NixOS/nixpkgs/pull/117041
Chiliparrot has quit [Ping timeout: 240 seconds]
teto has quit [Ping timeout: 240 seconds]
<{^_^}> [hydra] @grahamc merged pull request #895 → hydra-send-stats: fix imports → https://github.com/NixOS/hydra/pull/895
Chiliparrot has joined #nixos
aei has joined #nixos
cole-h has joined #nixos
M011100110110110 has joined #nixos
Vadrigar has quit [Ping timeout: 246 seconds]
<M011100110110110> I'm trying to route all trafic via wg0
<sterni> wg-quick kinda does that stuff for you if that's an option
zie- has quit [Quit: ZNC 1.8.1 - https://znc.in]
zie has joined #nixos
Vadrigar has joined #nixos
ahmed_elgabri has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114657 → nawk: 20180827 -> unstable-2021-02-15, fix noweb and nawk cross-complation → https://github.com/NixOS/nixpkgs/pull/114657
ahmedelgabri has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116338 → bambootracker: fix executable on Darwin → https://github.com/NixOS/nixpkgs/pull/116338
<{^_^}> [nixpkgs] @Mic92 merged pull request #108952 → nixos/systemd-boot: add typechecking → https://github.com/NixOS/nixpkgs/pull/108952
respawn_ has joined #nixos
dev_mohe has joined #nixos
mallox has quit [Quit: WeeChat 3.1]
ml| has joined #nixos
phalrax has joined #nixos
ml| has quit [Client Quit]
Dr8128 has quit [Read error: Connection reset by peer]
Dr8128 has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
ml| has joined #nixos
domogled has joined #nixos
cfricke has joined #nixos
Chiliparrot has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #116722 → insomnia: 2021.1.0 -> 2021.1.1 → https://github.com/NixOS/nixpkgs/pull/116722
Vadrigar has quit [Ping timeout: 240 seconds]
sangoma has quit [Ping timeout: 245 seconds]
attila_lendvai_ has joined #nixos
Vadrigar has joined #nixos
Qwerky has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Mic92 merged pull request #117029 → ell: 0.36 -> 0.38, iwd: 1.11 -> 1.12 → https://github.com/NixOS/nixpkgs/pull/117029
Darkmatter66 has quit [Read error: Connection reset by peer]
konubinix has quit [Quit: Coyote finally caught me]
Darkmatter66 has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #116708 → haproxy: 2.3.6 -> 2.3.7 → https://github.com/NixOS/nixpkgs/pull/116708
konubinix has joined #nixos
<{^_^}> [nixpkgs] @Mic92 opened pull request #117043 → linuxPackages.bcc: 0.18.0 -> 0.19.0 → https://github.com/NixOS/nixpkgs/pull/117043
Qwerky has joined #nixos
domogled has quit [Quit: domogled]
Qwerky has quit [Ping timeout: 260 seconds]
turlando has joined #nixos
civodul has joined #nixos
Vadrigar has quit [Ping timeout: 276 seconds]
lcvass has quit [Ping timeout: 245 seconds]
<s1341_> hi
<s1341_> i have this nix-shell derivation:
<s1341_> and I'm getting error: while evaluating the attribute 'buildInputs' of the derivation 'nix-shell-aarch64-unknown-linux-android' at /home/shmaryar/src/nixpkgs/pkgs/stdenv/generic/make-derivation.nix:198:11:
<s1341_> cannot coerce a set to a string, at /home/shmaryar/src/nixpkgs/pkgs/stdenv/generic/make-derivation.nix:198:11
<cole-h> xorg is a set of packages
<cole-h> line 45 of that paste
<{^_^}> [nixpkgs] @jonringer opened pull request #117044 → nixos/factorio: update admin setting → https://github.com/NixOS/nixpkgs/pull/117044
<s1341_> uh.
<s1341_> o.
<s1341_> ok.
lcvass has joined #nixos
vidbina has quit [Ping timeout: 240 seconds]
<s1341_> thanks!
lcvass has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
lcvass has joined #nixos
codygman__ has joined #nixos
nicoo has quit [Ping timeout: 268 seconds]
lcvass has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
__monty__ has joined #nixos
lcvass has joined #nixos
nicoo has joined #nixos
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
dev_mohe has quit [Quit: dev_mohe]
lcvass has quit [Ping timeout: 264 seconds]
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
meh` has joined #nixos
phalrax has quit [Quit: Connection closed]
<gurjeet> What's the standard procedure/command to install a Ruby Gem that has not been nixified by the creator of the said gem.
<gurjeet> Specifically, I am trying to install macinbox, and hope to use it with vagrant installed using Nix.
<gurjeet> I used the non-nix method, and it barfs. Persumably because we can't mix nix and non-nix Ruby code.
<gurjeet> $ nix-env -iA nixpkgs.vagrant
<gurjeet> $ sudo gem install macinbox
<gurjeet> $ sudo macinbox --installef /Applications/Install\ macOS\ Mojave.app/
<gurjeet>         from /Library/Ruby/Gems/2.3.0/gems/macinbox-4.1.1/lib/macinbox/cli/options.rb:35:in `new'
<gurjeet>         from /Library/Ruby/Gems/2.3.0/gems/macinbox-4.1.1/lib/macinbox/cli/options.rb:35:in `parse_options'
<gurjeet>         from /Library/Ruby/Gems/2.3.0/gems/macinbox-4.1.1/lib/macinbox/cli.rb:29:in `start'
<gurjeet>         from /Library/Ruby/Gems/2.3.0/gems/macinbox-4.1.1/lib/macinbox/cli.rb:19:in `run!'
gurjeet has quit [Killed (Sigyn (Spam is off topic on freenode.))]
<kaletaa> can i somehow force a newer wine version for lutris? i tried to make an overlay but it seems like nothing happened
sangoma has joined #nixos
<jess> that looks like an accident
<Yaniel> it does yes
<jess> I'll remove it
lcvass has joined #nixos
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
gurjeet has joined #nixos
oxalica has quit [Remote host closed the connection]
pushqrdx has joined #nixos
oxalica has joined #nixos
urkk_ has quit [Ping timeout: 246 seconds]
oxalica has quit [Remote host closed the connection]
urkk has joined #nixos
<avn> kaletaa: newer wine, you mean 6.4?
<kaletaa> yeah
<{^_^}> [nixpkgs] @dotlambda opened pull request #117045 → pure-maps: fix → https://github.com/NixOS/nixpkgs/pull/117045
oxalica has joined #nixos
davidv7 has joined #nixos
rajivr has quit [Quit: Connection closed for inactivity]
oxalica has quit [Remote host closed the connection]
<kaletaa> i tried installing unstable lutris, but it also pulls in unstable steam for whatever reason
<kaletaa> and unstable steam doesn't want to build at all
<kaletaa> it tries to pull a tarball from the steam site but it 404s
supersandro2000 has quit [Quit: The Lounge - https://thelounge.chat]
supersandro2000 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117024 → steamPackages.steam: 1.0.0.68 -> 1.0.0.69 → https://github.com/NixOS/nixpkgs/pull/117024
<supersandro2000> kalbasit[m]: ^ fixed with this commit
<kaletaa> amazing timing
<{^_^}> [nixpkgs] @stuebinm opened pull request #117046 → nixos/mattermost: add secretFile option for declarative configs → https://github.com/NixOS/nixpkgs/pull/117046
<{^_^}> [nixpkgs] @symphorien merged pull request #116812 → epkowa: add epson perfection v600 photo → https://github.com/NixOS/nixpkgs/pull/116812
<kaletaa> how long until the change is avaliable on the unstable channel? supersandro2000
<supersandro2000> kaletaa: if the channel ist not blocked, which it wasn't the last days, maybe tomorrow or in two days
<kaletaa> alright, thanks
svobot has joined #nixos
Brandon__ has quit [Quit: Leaving]
<supersandro2000> how is that github pages site called where you can check the status of a PR?
SomeoneS1 has joined #nixos
codygman__ has quit [Remote host closed the connection]
codygman__ has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
quinn has quit [Quit: ZNC 1.8.1 - https://znc.in]
Qwerky has joined #nixos
lcvass has quit [Ping timeout: 260 seconds]
ahmed_elgabri has quit [Ping timeout: 256 seconds]
<avn> kaletaa: I can build 6.4 today, and make PR, if you like to test
lcvass has joined #nixos
<{^_^}> [nixpkgs] @collares opened pull request #117047 → gtksourceview: fix intermittent "resource not found" build errors → https://github.com/NixOS/nixpkgs/pull/117047
aei has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116797 → lychee: init at 0.5.0 → https://github.com/NixOS/nixpkgs/pull/116797
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #117048 → mksh: fix license → https://github.com/NixOS/nixpkgs/pull/117048
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117039 → gnucap: init at 20210107 → https://github.com/NixOS/nixpkgs/pull/117039
<{^_^}> [nixpkgs] @luc65r opened pull request #117049 → moonlight-qt: init at v3.1.0 → https://github.com/NixOS/nixpkgs/pull/117049
jonringer has quit [Ping timeout: 264 seconds]
<yaymukund> so I've tried everything regarding this "hand cursor won't appear on mouseover" bug that appears on firefox-wayland (but works as expected on non-wayland firefox). Just opened a bug w mozilla :cross_fingers:
strikerlulu has quit [Ping timeout: 246 seconds]
gurjeet has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115261 → eddy: init at 1.2.1 → https://github.com/NixOS/nixpkgs/pull/115261
<{^_^}> [nixpkgs] @matthewmazzanti opened pull request #117050 → python3Packages.sphinx: Add missing "packaging" dependency → https://github.com/NixOS/nixpkgs/pull/117050
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116986 → librespeed-cli: init at 1.0.7 → https://github.com/NixOS/nixpkgs/pull/116986
Darkmatter66 has quit [Ping timeout: 264 seconds]
endformationage has joined #nixos
zupo has joined #nixos
<codygman__> Does anyone use a local irc server? Any easy to setup on nixos? I'm trying to use matterbridge (https://github.com/42wim/matterbridge) to pull all of my discord, slack, teams, and other communication into my irc client but I only want that communiction going through my own local private irc server.
turlando has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @matthewmazzanti opened pull request #117051 → gnutls: Fix failing patch for Aarch32 → https://github.com/NixOS/nixpkgs/pull/117051
Vadrigar has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #117050 → python3Packages.sphinx: Add missing "packaging" dependency → https://github.com/NixOS/nixpkgs/pull/117050
berberman_ has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @dotlambda opened pull request #117052 → mapbox-gl-native: use upstream version plus patch → https://github.com/NixOS/nixpkgs/pull/117052
berberman has joined #nixos
<supersandro2000> codygman__: note which is a real headache with matterbridge: if any bridge is not connecting it reboot loops...
<supersandro2000> not sure how the nixos module handles htis
lsix1 has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @matthewmazzanti opened pull request #117053 → openssh: Fix cross-compile regression from #c99c499 → https://github.com/NixOS/nixpkgs/pull/117053
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117012 → makemkv: 1.15.4 -> 1.16.3 → https://github.com/NixOS/nixpkgs/pull/117012
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/Jm9ym
<{^_^}> [nixpkgs] @dotlambda opened pull request #117054 → [staging-next] pythonPackages.google-auth: add extra requirement pyopenssl → https://github.com/NixOS/nixpkgs/pull/117054
Vadrigar has quit [Ping timeout: 256 seconds]
shibboleth has joined #nixos
respawn_ has quit [Quit: Leaving]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115181 → curaengine_stable: fixup build on i686 → https://github.com/NixOS/nixpkgs/pull/115181
strikerlulu has joined #nixos
ahmed_elgabri has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115729 → python38Packages.percol: python3 support → https://github.com/NixOS/nixpkgs/pull/115729
kenran has quit [Ping timeout: 264 seconds]
kenran has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #117055 → [staging-next] pythonPackages.drf-yasg: does need packaging → https://github.com/NixOS/nixpkgs/pull/117055
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115423 → mpdevil: init at 1.1.1 → https://github.com/NixOS/nixpkgs/pull/115423
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117054 → [staging-next] pythonPackages.google-auth: add extra requirement pyopenssl → https://github.com/NixOS/nixpkgs/pull/117054
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #107869 → python3Packages.jupyterlab: 2.2.9 -> 3.0.11 → https://github.com/NixOS/nixpkgs/pull/107869
Lord_of_Life_ has joined #nixos
fendor has quit [Remote host closed the connection]
rwlx[m] has joined #nixos
rwlx[m] has left #nixos [#nixos]
Lord_of_Life has quit [Ping timeout: 246 seconds]
Lord_of_Life_ is now known as Lord_of_Life
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117018 → genpass: 0.4.9 -> 0.4.12 → https://github.com/NixOS/nixpkgs/pull/117018
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/Jm976
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117026 → mat2: 0.12.0 -> 0.12.1 → https://github.com/NixOS/nixpkgs/pull/117026
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117028 → foot: 1.6.4 -> 1.7.0 → https://github.com/NixOS/nixpkgs/pull/117028
bitmapper has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #117056 → [staging-next] pythonPackages.graphite-web: update dependencies → https://github.com/NixOS/nixpkgs/pull/117056
Darkmatter66 has joined #nixos
sangoma has quit [Ping timeout: 240 seconds]
fendor has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116780 → nano-wallet: 20.0 -> 21.3 → https://github.com/NixOS/nixpkgs/pull/116780
shibboleth has quit [Quit: shibboleth]
cyphase has quit [Quit: cyphase.com]
mcornick has quit [Quit: bbiaf]
dev_mohe has joined #nixos
dev_mohe has quit [Client Quit]
mcornick has joined #nixos
cfricke has quit [Quit: WeeChat 3.0.1]
oxalica has joined #nixos
missionformilk has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117011 → treewide (darwin): fix or enable darwin build for many packages (7) → https://github.com/NixOS/nixpkgs/pull/117011
sangoma has joined #nixos
sigmundv__ has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/85141b8609c (from 17 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
n-osborne has joined #nixos
<numkem> LnL: I see in the logs you've had the std::bad_alloc error in hydra queue-runner. Have you ever figured it out? My builds were running fine until this started happening
n-osborne has quit [Remote host closed the connection]
<numkem> Taneb: you seem to have had the same issue as well
oxalica has quit [Remote host closed the connection]
simonpe^^ has quit [Remote host closed the connection]
missionformilk has quit [Ping timeout: 264 seconds]
zupo has joined #nixos
sangoma has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @erikarvstedt opened pull request #117058 → rsbep: 0.1.0 -> 0.2.0 → https://github.com/NixOS/nixpkgs/pull/117058
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @globin pushed to structured-attrs « treewide: fix structured-attrs related failures »: https://git.io/Jm9jz
pushqrdx has quit [Remote host closed the connection]
gustavderdrache has quit [Read error: Connection reset by peer]
lcvass has quit [Ping timeout: 246 seconds]
vidbina has joined #nixos
gustavderdrache has joined #nixos
lcvass has joined #nixos
<AmandaC> What user/group does a id_rsa need to be readable as for /etc/nix/machines?
ThePaulODoom has joined #nixos
<ThePaulODoom> I am having troubles with making a Nix package? Can somebody help?
<ThePaulODoom> How do I import stdenv on a package?
<tomberek> ThePaulODoom: schedule at time at https://calendly.com/tomberek and we can go through it together?
<ThePaulODoom> not right now
<ThePaulODoom> so I have {stdenv, ...}:
<ThePaulODoom> but when I call nix-build it says "error: cannot auto-call a function that has an argument without a default value ('stdenv')"
aei has joined #nixos
lcvass has quit [Client Quit]
<{^_^}> [nixpkgs] @maxhbr closed pull request #113935 → freeplane: init at 1.8.11 → https://github.com/NixOS/nixpkgs/pull/113935
lcvass has joined #nixos
Darkmatter66 has quit [Ping timeout: 240 seconds]
ThePaulODoom has quit [Quit: leaving]
teto has joined #nixos
ahmed_elgabri has quit [Ping timeout: 260 seconds]
ahmed_elgabri has joined #nixos
novafacing has joined #nixos
<{^_^}> [nixpkgs] @fabaff merged pull request #116828 → python38Packages.digi-xbee: 1.3.0 -> 1.4.0 → https://github.com/NixOS/nixpkgs/pull/116828
<{^_^}> [nixpkgs] @fabaff merged pull request #116825 → python38Packages.ftputil: 5.0.0 -> 5.0.1 → https://github.com/NixOS/nixpkgs/pull/116825
<{^_^}> [nixpkgs] @fabaff merged pull request #116913 → go-mockery: 2.5.1 -> 2.7.4 → https://github.com/NixOS/nixpkgs/pull/116913
<l33[m]> <ThePaulODoom "but when I call nix-build it say"> how are you running it?
<{^_^}> [nixpkgs] @fabaff merged pull request #116930 → gophernotes: 0.7.1 -> 0.7.2 → https://github.com/NixOS/nixpkgs/pull/116930
<{^_^}> [nixpkgs] @andersk opened pull request #117059 → python3Packages.pytest-dependency: Fix build with pytest ≥ 6.2.0 → https://github.com/NixOS/nixpkgs/pull/117059
<{^_^}> [nixpkgs] @fabaff merged pull request #116620 → python3Packages.luftdaten: 0.6.4 -> 0.6.5 → https://github.com/NixOS/nixpkgs/pull/116620
<{^_^}> [nixpkgs] @fabaff merged pull request #116585 → python38Packages.ckcc-protocol: 1.0.3 -> 1.1.0 → https://github.com/NixOS/nixpkgs/pull/116585
jlotoski-znc has quit [Ping timeout: 256 seconds]
jonringer has joined #nixos
<Taneb> numkem: if I figured it out I've long forgotten, I'm afraid
Lord_of_Life has quit [Ping timeout: 256 seconds]
<numkem> Taneb: no worries, I was getting it with nixFlakes and after switching back to 2.3 it's working just fine again... Seems like it's still not ready
Vadrigar has joined #nixos
<Taneb> Likely a different reason to me, then
<{^_^}> [nixpkgs] @petabyteboy merged pull request #116595 → jetbrains: updates → https://github.com/NixOS/nixpkgs/pull/116595
lo|rd has quit [Read error: Connection reset by peer]
growpotkin has joined #nixos
Vadrigar has quit [Ping timeout: 245 seconds]
lord| has joined #nixos
johnny101 has joined #nixos
simpson has quit [Ping timeout: 260 seconds]
simpson has joined #nixos
<{^_^}> [nixpkgs] @Trundle opened pull request #117060 → pulumi-bin: 2.22.0 -> 2.23.1 → https://github.com/NixOS/nixpkgs/pull/117060
turlando has joined #nixos
missionformilk has joined #nixos
kpcyrd has joined #nixos
jmeredith has quit [Quit: Connection closed for inactivity]
vidbina has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @dotlambda merged pull request #116325 → python3Packages.packageurl-python: init at 0.9.4 → https://github.com/NixOS/nixpkgs/pull/116325
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
__monty__ has quit [Quit: leaving]
<codygman__> supersandro2000: oof... reboot loop is a dealbreaker
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JmHqf
<{^_^}> [nixpkgs] @fabaff opened pull request #117062 → Home Assistant dependencies update → https://github.com/NixOS/nixpkgs/pull/117062
vidbina has joined #nixos
<redcedar[m]> hi folks, I'm getting an error trying to build emacs with org from epkgs.orgPackages. It says it cannot download the tarball from any mirror. I've upgraded the channel to latest (unstable). Any idea how to approach this problem?
<remexre> hm, should ghcWithPackages automatically pull in llvm on aarch64?
<remexre> currently it doesn't, but GHC can't actually produce executables on aarch64 without it
pageless has joined #nixos
<pageless> How do you access man pages of programs installed via nix, for example, I have feh installed through nix
<lassulus> feh doesn't seem to have a manpage
cyphase has joined #nixos
<lassulus> at least its not in the package
<{^_^}> [nixpkgs] @marsam merged pull request #117059 → python3Packages.pytest-dependency: Fix build with pytest ≥ 6.2.0 → https://github.com/NixOS/nixpkgs/pull/117059
<lassulus> there is a README.md in feh.doc
<pageless> ah. If a package did  have a man page, how would I go about accessing it
<lassulus> man $thing
codygman` has joined #nixos
<lassulus> it also works in nix-shell -p $somepackage if the man page has the same name as an executable the package provides
<pageless> I need the man-db package in nix right, for that to work
<viq[m]> How can I tell nix to install pygit2 for the version of python that salt uses, whatever that version is at the time?
<lassulus> uhm not sure
kenran has quit [Quit: leaving]
philr_ has joined #nixos
<pageless> ill have to look into it later. Thanks for the help anyways
pageless has quit [Quit: Connection closed]
<Orbstheorem> How do I add a package to another package's FHS ?
<viq[m]> And more importantly, how can I use it?
<Orbstheorem> viq[m]: You can pass packages providing python modules so that they're accesible by salt at runtime.
<Orbstheorem> You can probably do something like `pkgs.salt.override {extraInputs = [];}`
<Orbstheorem> (ofc, put the packages you want in that list)
<yaymukund> if I declaratively add extensions ot firefox, is there a standard way to keep them updated?
missionf1rmilk has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #117063 → gopass: 1.12.2 -> 1.12.4 → https://github.com/NixOS/nixpkgs/pull/117063
<viq[m]> Orbstheorem: thanks, I'll try that
<Orbstheorem> yaymukund: I don't know about ffox specifically, but if it's coming from nixpkgs, it should be updated everytime the package is updated.
missionformilk has quit [Ping timeout: 256 seconds]
<Orbstheorem> viq[m]: Mind you probably want to use pkgs from the python3.pkgs attrset (e.g. `extraInputs = with python3.pkgs; [jinja2];`)
<yaymukund> Orbstheorem: it's not. nixpkgs gives you a function `fetchFirefoxAddon` and you're expected to feed it the URL and sha of the extension.
ManiacOfMadness has joined #nixos
<Orbstheorem> Oh okay
<yaymukund> Looks like there's an open issue buildPythonApplication
<yaymukund> oops
<{^_^}> #105783 (by eyJhb, 15 weeks ago, open): Firefox extensions discussion
<{^_^}> [nixpkgs] @fabaff opened pull request #117064 → findomain: specify license → https://github.com/NixOS/nixpkgs/pull/117064
missionf1rmilk has quit [Ping timeout: 256 seconds]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/66f4dc4fd1b (from 11 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/66f4dc4fd1b (from 11 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
mcornick has quit [Quit: bbl]
`slikts has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @kvtb opened pull request #117066 → less.nix: fix escape → https://github.com/NixOS/nixpkgs/pull/117066
<rmcgibbo[m]> On nixos with channels (non-flakes), is it typical to have a channel named `nixos` or a channel named `nixpkgs`? When is one used over the other?
missionformilk has joined #nixos
<Orbstheorem> iirc nixos
<Orbstheorem> (At least for the system configuration)
`slikts has joined #nixos
<Orbstheorem> I don't know when the nixpkgs is used, maybe as a fallback ?
<Orbstheorem> Though I'm quite sure nixos will be used first.
shibboleth has joined #nixos
domogled has joined #nixos
<rmcgibbo[m]> I have like `nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos` in my NIX_PATH, so I guess that's how `import <nixpkgs>` connects to being the same thing as import <nixos>`?
shibboleth has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @fabaff opened pull request #117067 → assh: set version → https://github.com/NixOS/nixpkgs/pull/117067
shibboleth has joined #nixos
missionformilk has quit [Ping timeout: 260 seconds]
zebrag has quit [Read error: Connection reset by peer]
zebrag has joined #nixos
FRidh has quit [Quit: Konversation terminated!]
<Orbstheorem> Sounds about right.
sigmundv__ has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #117068 → nvchecker: 2.2 -> 2.3 → https://github.com/NixOS/nixpkgs/pull/117068
missionformilk has joined #nixos
xO1 has quit [Ping timeout: 240 seconds]
dev_mohe has joined #nixos
dev_mohe has quit [Client Quit]
<{^_^}> [nixpkgs] @fabaff opened pull request #117069 → python3Packages.simplisafe-python: init at 9.6.9 → https://github.com/NixOS/nixpkgs/pull/117069
growpotk- has joined #nixos
<{^_^}> [nixpkgs] @globin pushed 2 commits to structured-attrs: https://git.io/JmHcM
fendor has quit [Read error: Connection reset by peer]
growpotk- has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117064 → findomain: specify license → https://github.com/NixOS/nixpkgs/pull/117064
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117058 → rsbep: 0.1.0 -> 0.2.0 → https://github.com/NixOS/nixpkgs/pull/117058
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117062 → Home Assistant dependencies updates → https://github.com/NixOS/nixpkgs/pull/117062
<rmcgibbo[m]> When I run `nix-env -qaP -f {local-nixpkgs-checkout}`, I see (for example) a package called `sudolikeaboss`, and when I run `nix build -f . sudolikeaboss`, I get a "bla bla bla not support on x86_64-linux, refusing to evaluate use NIXPKGS_ALLOW_UNSUPPORTED_SYSTEMS=1 if you want".
<rmcgibbo[m]> Is there a way to have nix-env -qaP _not_ output packages that are only for unsupported systems?
veegee has quit [Quit: veegee]
<{^_^}> [nixpkgs] @fabaff opened pull request #117070 → python3Packages.aionotion: init at 3.0.1 → https://github.com/NixOS/nixpkgs/pull/117070
attila_lendvai_ has quit [Ping timeout: 246 seconds]
<rmcgibbo[m]> Ah, --system-filter is what I want. But how about packages that are marked broken or insecure, and also fail to evaluate without a special env var?
<{^_^}> [nixpkgs] @stigtsp merged pull request #116799 → perlPackages.GitAutoFixup: fix too long shebang under darwin → https://github.com/NixOS/nixpkgs/pull/116799
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
codygman` has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @mohe2015 opened pull request #117071 → nixos/zfs: Fix regression that prevents people to boot from zfs using grub if they didn't add zfs to boot.initrd.support… → https://github.com/NixOS/nixpkgs/pull/117071
<{^_^}> [nixpkgs] @em0lar opened pull request #117072 → nixos/keycloak: use db username in db init scripts → https://github.com/NixOS/nixpkgs/pull/117072
<{^_^}> [nixpkgs] @sternenseemann opened pull request #117073 → inspircd: init at 3.9.0 → https://github.com/NixOS/nixpkgs/pull/117073
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116941 → vscode-extensions.redhat.java: init at 0.76.0 → https://github.com/NixOS/nixpkgs/pull/116941
<{^_^}> [nixpkgs] @adisbladis opened pull request #117074 → emacs.pkgs: 2021-03-21 → https://github.com/NixOS/nixpkgs/pull/117074
<aei> ok, thanks adisbladis++ and supersandro2000++ for getting things D moving (others as well but i don't know their nicks). The two D compilers dmd and ldc were broken, dmd in particular for a long time along with whatever depended on it; ldc is fixed, the modest D toolchain (dub package manager and dtools) now defaults use ldc (ldc targets more architectures than dmd and produces faster and usually smaller/cleaner binaries) (so they are
<aei> back up after being broken along with dmd); most of the not many applications depending on D in nixpkgs are now compiled by ldc ... This diatribe is because it appears (i just found out that) dmd remains broken for the time being (despite also having been updated), i should file an issue; but, the circumstances described are to explain also that things are much better now than they have been for a while (dmd has been broken for a lot
<{^_^}> adisbladis's karma got increased to 150
<aei> longer than ldc has been or this patch, i.e. this patch is not what breaks it, #115265 once again provides a D compiler and fixes a number things D), so again thanks (and no doubt will need you more in future)
<{^_^}> supersandro2000's karma got increased to 41
<{^_^}> https://github.com/NixOS/nixpkgs/pull/115265 (by ThomasMader, 2 weeks ago, merged): Dlang update
<supersandro2000> no problemo
<{^_^}> [nixpkgs] @fabaff opened pull request #117075 → python3Packages.pyflunearyou: switch to disabledTestPaths → https://github.com/NixOS/nixpkgs/pull/117075
andreas31 has quit [Remote host closed the connection]
andreas31 has joined #nixos
<colemickens> gchristensen: thanks for the hydra tips, I stole the machine text generation file so I could have something nice in my config: https://github.com/colemickens/nixcfg/blob/6a720ebef88a229afb21f38342a97f89f9f5badc/hosts/slynux/hydra.nix. One more question - do you know if there's issues hydra (with nixUnstable) utilizing builders that are running stable nix?
<{^_^}> [nixpkgs] @marsam opened pull request #117076 → mpd: fix build on darwin → https://github.com/NixOS/nixpkgs/pull/117076
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #108092 → freeplane: init at 1.8.11 → https://github.com/NixOS/nixpkgs/pull/108092
codygman` has joined #nixos
<gchristensen> colemickens: yeah, hydra's nix should be the same as the system nix
domogled has quit [Quit: domogled]
cartwright has quit [Remote host closed the connection]
cartwright has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #116985 → surface-control: 0.3.1-1 -> 0.3.1-2 → https://github.com/NixOS/nixpkgs/pull/116985
mcornick has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #116745 → logseq: init at 0.0.13 → https://github.com/NixOS/nixpkgs/pull/116745
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117055 → [staging-next] pythonPackages.drf-yasg: does not depend on packaging → https://github.com/NixOS/nixpkgs/pull/117055
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JmH09
<{^_^}> [nixpkgs] @WilliButz merged pull request #116969 → privacyIDEA: 3.3 -> 3.5.1 → https://github.com/NixOS/nixpkgs/pull/116969
<{^_^}> [nixpkgs] @mweinelt merged pull request #117069 → python3Packages.simplisafe-python: init at 9.6.9 → https://github.com/NixOS/nixpkgs/pull/117069
Dotz0cat has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #117053 → openssh: Fix cross-compile regression from c99c499 → https://github.com/NixOS/nixpkgs/pull/117053
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115800 → mpvScripts.thumbnail: init at unstable-2020-01-16 → https://github.com/NixOS/nixpkgs/pull/115800
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115916 → python3.pkgs.django-cacheops: init at 5.1 → https://github.com/NixOS/nixpkgs/pull/115916
civodul has quit [Ping timeout: 265 seconds]
Vadrigar has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #116082 → python3.pkgs.cssutils: 2.0.0 -> 2.2.0 → https://github.com/NixOS/nixpkgs/pull/116082
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #117053 → openssh: Fix cross-compile regression from c99c499 → https://github.com/NixOS/nixpkgs/pull/117053
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117068 → nvchecker: 2.2 -> 2.3 → https://github.com/NixOS/nixpkgs/pull/117068
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #117067 → assh: set version → https://github.com/NixOS/nixpkgs/pull/117067
slack1256 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112177 → qtstyleplugins: fix gtk2 background → https://github.com/NixOS/nixpkgs/pull/112177
Vadrigar has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Ekleog merged pull request #115920 → zen-kernels: 5.11.1 -> 5.11.5 → https://github.com/NixOS/nixpkgs/pull/115920
codygman` has quit [Remote host closed the connection]
codygman` has joined #nixos
mcornick has quit [Quit: leaving]
<{^_^}> [nixpkgs] @tomberek merged pull request #116789 → librecad: 2.2.0-rc1 -> 2.2.0-rc2 → https://github.com/NixOS/nixpkgs/pull/116789
meh` has quit [Ping timeout: 245 seconds]
anderslu1dstedt has joined #nixos
meh` has joined #nixos
quinn has joined #nixos
anderslundstedt has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #117070 → python3Packages.aionotion: init at 3.0.1 → https://github.com/NixOS/nixpkgs/pull/117070