<mguentner> \o/
mbrgm_ has joined #nixos
mbrgm has quit [(Ping timeout: 272 seconds)]
mbrgm_ is now known as mbrgm
<peter-holm> home is not remounted... So I will try reboot.
<peter-holm> bye
peter-holm has quit [(Remote host closed the connection)]
markus1199 has joined #nixos
<avn> Folks, anyone who familiar with nfs and mounting stuff in nixos... can you help with nfs mounts?
<avn> https://github.com/avnik/nixos-configs/blob/master/boomer.nix#L31 what wrong in this declaration, and why these nfs mounts not mounted on boot (`sudo mount /mnt/video` mount them ok)
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/61d125b8425da501f07765197186ed7351a55f48
<NixOS_GitHub> nixpkgs/master 61d125b Alexander Kahl: sssd: init at 1.14.2...
markus1189 has quit [(Ping timeout: 248 seconds)]
<NixOS_GitHub> [nixpkgs] abbradar closed pull request #21150: sssd: init at 1.14.2 (master...pkgs/sssd-1.13.3) https://github.com/NixOS/nixpkgs/pull/21150
<guillaum1> Sorry, I'm lost. I'm trying to get X working, I added "nvidia" in my services.xserver.videoDrivers and it fails, mostly because the GPU is too new for the packaged driver. How can I a) know which version of the driver is installed and b) install an updated version.
bfrog_ has joined #nixos
<guillaum1> (I tried a bunch of "nix-env -qa | grep nvidia", with no succes)
<puffnfresh> guillaum1: nix-instantiate --eval -E 'with import <nixos> { }; linuxPackages.nvidia_x11.versionNumber'
cjhowe has joined #nixos
<guillaum1> puffnfresh: nice, part of the answer (I'll have to read a bunch of doc to understand your command). Well, as feared, it is outdated for my GPU.
<puffnfresh> so I think the answer is to add a package override for nvidia_x11
<puffnfresh> nvidia_x11 = callPackage ./my-custom-nvidia-x11.nix { }; # https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/nvidia-x11/default.nix
<puffnfresh> take that link and update the version number
<puffnfresh> or is that a good version already?
cjhowe has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<guillaum1> puffnfresh: that version is ok
<puffnfresh> guillaum1: so you could change to unstable instead
<puffnfresh> would that be acceptable?
<guillaum1> puffnfresh: I don't know, gchristensen told me that it is bad ;)
<puffnfresh> well, it's unstable :)
<puffnfresh> and sometimes you have to compile things yourself while caches get filled
<guillaum1> well, I was on unstable in arch linux, so it is acceptable
<guillaum1> but I was thinking that nix was built specially to allow installing package of different version, so can't I install nvidia from unstable on top of the stable release ?
<puffnfresh> guillaum1: you can, but it's not the easiest thing to do
<puffnfresh> I'll tell you how to do both
kampfschlaefer has quit [(Ping timeout: 240 seconds)]
<puffnfresh> sudo nix-channel --add https://nixos.org/channels/nixos-unstable # this will switch you to unstable
<puffnfresh> sudo nixos-rebuild switch --upgrade # will build and switch your system over to unstable
<guillaum1> puffnfresh: I did that, + nixos-rebuild switch --upgrade and nothing happened.
<puffnfresh> can you "sudo nix-channel --list" for me?
<berce> puffnfresh: isn't "nixos" missing at the end of nix-channel --add ...?
<guillaum1> there is nixpkgs .... unstable and nixos .... 16.09
<puffnfresh> berce: urgh, yes
<berce> Just read (parts of) the manual :-)
<guillaum1> yeah, now there is something happening ;)
<puffnfresh> guillaum1: sudo nix-channel --remove unstable
<puffnfresh> woo
<berce> Now I 'm all ears to learn from you, :-)
<puffnfresh> now, to mix unstable and stable
matthewbauer has joined #nixos
<gchristensen> puffnfresh, guillaum1: *nixpkgs*-unstable is dangerous
<gchristensen> *nixos*-unstable isn't necessarily great, but isn't dangerous
<puffnfresh> gchristensen: what's different?
<gchristensen> puffnfresh: https://gist.github.com/grahamc/1853598c8a0194659d18db021cf41be2 can you read this and see if this makes sense? I'm trying to write this down to explain, so it can go in a factoid or in the docs
DanC__ has joined #nixos
<DanC__> $ nix-channel --update
<DanC__> /home/dconnolly/.nix-profile/bin/nix-channel: unable to check ‘https://ci.monte-language.org/project/monte/channel/latest
<DanC__> so... how do I find out why not?
* DanC__ resorts to strace...
<puffnfresh> gchristensen: I can understand that, thanks
ertes has joined #nixos
<guillaum1> gchristensen: and by having two channels (nixos 16... and nixpkgs unstable) inside my channel list, what did I do exactly ? Because it did not appears to change anything.
<gchristensen> guillaum1: import <nixos> will import the nixos channel and import <nixpkgs> will import the nixpkgs channel
<gchristensen> guillaum1: nixos-rebuild imports <nixos>
<pikajude> what's the right way to fix /nix/store/lb3qfkphn1maj74k6q886db3g7gzbgjk-binutils-2.27/bin/ld: cannot find -lgcc_s on linux?
<gchristensen> (is what I said right?)
* gchristensen isn't 100% sure
<guillaum1> ok, so I did nothing actually, because I was only using nixos-rebuild. But I can imagine that it exists some part of the settings which may refers to nixpkgs?
<gchristensen> no, unlikely
mudri` has quit [(Ping timeout: 256 seconds)]
<gchristensen> I have to go. can someone else step in?
<gchristensen> if not I'll be back in ~45 min :)
<puffnfresh> guillaum1: nixpkgs.config.packageOverrides = super: { linuxPackages = super.linuxPackages // { nvidia_x11 = (import <nixos-unstable> { }).linuxPackages.nvidia_x11; }; }
<guillaum1> gchristensen: thank you for your time, I'll understand some stuff tomorrow ;) I'll have to be asleep in 45 minutes ;)
<puffnfresh> you can use that channel in your overrides
<puffnfresh> so that should allow you to be on stable but use nixos-unstable nvidia
<puffnfresh> does that answer your questions?
<berce> Interesting.
<guillaum1> yes ;) (Well, no, because now I have to understand it, but yes because this is a solution). Thank you, I'll digest all of that, read manuals, and come back later ;)
<AtnNn> Can I tell nixpkgs to not run tests? Specifically, haskell tests?
* DanC__ figured it out... SSL cert / host mismatch. better diagnostic would be nice...
DanC__ has left #nixos ["Ex-Chat"]
<AtnNn> I'm trying to use a few custom haskell pacakges, and my computer has been testing half of hackage all day.
<puffnfresh> AtnNn: haskell.lib.dontCheck
<AtnNn> puffnfresh: Where do I put that? Is it recursive?
<guillaum1> (and I now have a working Xorg, so stuff starts to be interesting )
mbrgm has quit [(Ping timeout: 258 seconds)]
<puffnfresh> AtnNn: not recursive
<puffnfresh> AtnNn: probably want something like this: https://nixos.org/nixpkgs/manual/#how-to-build-with-profiling-enabled
<AtnNn> puffnfresh: I think I can use that, thanks!
mbrgm has joined #nixos
digitalmentat has joined #nixos
wkennington has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] LnL7 pushed 1 new commit to staging: https://github.com/NixOS/nixpkgs/commit/27660cfdc01c9a7481b4646285ab155cca784c38
<NixOS_GitHub> nixpkgs/staging 27660cf Daiderd Jordan: Merge branch 'master' into staging
ambro718 has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] fpletz closed pull request #21359: zfs: 0.6.5.8 -> 0.7.0-rc2 (master...upgrade/zfs) https://github.com/NixOS/nixpkgs/pull/21359
guillaum1 has quit [(Ping timeout: 248 seconds)]
eacameron has quit [(Ping timeout: 256 seconds)]
ryanartecona has quit [(Quit: ryanartecona)]
guillaum1 has joined #nixos
digitalmentat has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
<NixOS_GitHub> [nixpkgs] nixy opened pull request #21627: pythonPackages.nose-cprof: 0.1-0 -> 0.1.4 (master...pythonPackages.nose-cprof) https://github.com/NixOS/nixpkgs/pull/21627
eacameron has quit [(Ping timeout: 272 seconds)]
AllanEsp1nosa has quit [(Ping timeout: 245 seconds)]
mkoenig has quit [(Read error: Connection reset by peer)]
<gchristensen> zimbatm: ping
filterfish_ has joined #nixos
filterfish has quit [(Remote host closed the connection)]
bfrog_ has quit [(Ping timeout: 245 seconds)]
mkoenig has joined #nixos
<NixOS_GitHub> [nixpkgs] grahamc closed pull request #21627: pythonPackages.nose-cprof: 0.1-0 -> 0.1.4 (master...pythonPackages.nose-cprof) https://git.io/vMOlD
<NixOS_GitHub> [nixpkgs] grahamc pushed 2 new commits to master: https://github.com/NixOS/nixpkgs/compare/61d125b8425d...10c526d4872d
<NixOS_GitHub> nixpkgs/master 19f3e8c Andrew R. M: pythonPackages.nose-cprof: 0.1-0 -> 0.1.4...
<NixOS_GitHub> nixpkgs/master 10c526d Graham Christensen: Merge pull request #21627 from nixy/pythonPackages.nose-cprof...
Rotaerk has joined #nixos
matthewbauer has quit [(Ping timeout: 248 seconds)]
<c74d> What's less insecure, running something as root in a NixOS-made QEMU VM, or as non-root on the host?
<c74d> alternatively, could I make the VM's 9P mounts not be owned by the in-VM root user?
thc202 has quit [(Ping timeout: 245 seconds)]
johnsonav has quit [(Ping timeout: 240 seconds)]
mizu_no_oto has joined #nixos
<NixOS_GitHub> [nixpkgs] grahamc pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/e0878ce3163272f097b14f36dd61adca18257799
<NixOS_GitHub> nixpkgs/master e0878ce Maurizio Di Pietro: chase: init at 0.5.2
<NixOS_GitHub> [nixpkgs] grahamc closed pull request #21590: chase: init at 0.5.2 (master...master) https://github.com/NixOS/nixpkgs/pull/21590
<mguentner> c74d: from the /nix/store perspective a VM is better (since any user can read / execute all store content)
matthewbauer has joined #nixos
<c74d> hm
<c74d> I was wondering more about kernel exploits
<NixOS_GitHub> [nixpkgs] grahamc pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/fa89f84c546b2f7e669cacb4e457e2460a487e0a
<NixOS_GitHub> nixpkgs/master fa89f84 Graham Christensen: maintainers: rename mdipietro to polyrod to match their github name
ryantrinkle has joined #nixos
eacameron has joined #nixos
eacameron has quit [(Ping timeout: 245 seconds)]
guillaum1 has quit [(Ping timeout: 248 seconds)]
<ryantrinkle> does anyone have xpra working?
<gchristensen> good work, nixpkgs contributors! only 2 "oops"ies in 2016: https://github.com/NixOS/nixpkgs/search?o=desc&q=oops&s=author-date&type=Commits&utf8=%E2%9C%93
filterfish_ has quit [(Ping timeout: 256 seconds)]
eacameron has joined #nixos
xwvvvvwx has joined #nixos
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
garbas has quit [(Quit: WeeChat 1.6)]
jgrasser has quit [(Ping timeout: 245 seconds)]
eacameron has quit [(Ping timeout: 256 seconds)]
AllanEsp1nosa has joined #nixos
eacameron has joined #nixos
garbas has joined #nixos
systemfault has joined #nixos
eacameron has quit [(Ping timeout: 256 seconds)]
eacameron has joined #nixos
<gchristensen> domenkozar: do you have a GPG key?
sigmundv__ has quit [(Ping timeout: 248 seconds)]
ryanartecona has joined #nixos
ryanartecona has quit [(Client Quit)]
eacameron has quit [(Ping timeout: 258 seconds)]
eacameron has joined #nixos
ryanartecona has joined #nixos
Wizek_ has quit [(Ping timeout: 248 seconds)]
Wizek has quit [(Ping timeout: 245 seconds)]
mbrgm has quit [(Ping timeout: 256 seconds)]
mbrgm has joined #nixos
eacameron has quit [(Ping timeout: 272 seconds)]
eacameron has joined #nixos
indi_ has joined #nixos
johnsonav has joined #nixos
indi_ has quit [(Remote host closed the connection)]
angerman has joined #nixos
pie_ has joined #nixos
shanemikel has joined #nixos
Havvy has joined #nixos
isHavvy has quit [(Ping timeout: 268 seconds)]
<matthewbauer> I just sent this to the ML on GSoC 2017, but here's a link: http://lists.science.uu.nl/pipermail/nix-dev/2017-January/022432.html
<gchristensen> neat!
indi_ has joined #nixos
georges-duperon has quit [(Ping timeout: 245 seconds)]
Fare has joined #nixos
ryanartecona has quit [(Quit: ryanartecona)]
PragCyphr has joined #nixos
matthewbauer has quit [(Remote host closed the connection)]
matthewbauer has joined #nixos
<avn> matthewbauer: good work! `In-memory representation of derivations: get rid of the .drv files in Nix` upvoted ;)
PragCyph1 has quit [(Ping timeout: 272 seconds)]
<saintromuald> Hi all, wondering can you use nix-env in chromebooks using crouton a.k.a. as Chrubuntu?
<saintromuald> I guess it would only use ARM packages available in nix.
<saintromuald> just wondering how that would work.
cpennington has joined #nixos
sheenobu has joined #nixos
sheenobu has quit [(Changing host)]
sheenobu has joined #nixos
pie_ has quit [(Changing host)]
pie_ has joined #nixos
indi_ has quit [(Remote host closed the connection)]
indi_ has joined #nixos
indi_ has quit [(Remote host closed the connection)]
indi_ has joined #nixos
indi_ has quit [(Remote host closed the connection)]
indi_ has joined #nixos
hexagoxel has quit [(Ping timeout: 264 seconds)]
shanemikel has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
angerman has quit [(Quit: Bye)]
hexagoxel has joined #nixos
angerman has joined #nixos
indi_ has quit [(Ping timeout: 246 seconds)]
Lowl3v3l has joined #nixos
<eacameron> Ok noob question: How do I splice the contents of a file into a nix string? "${read ./file}"?
<eacameron> heh...builtins.readFile!
shanemikel has joined #nixos
xwvvvvwx has quit [(Ping timeout: 240 seconds)]
shanemikel has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
xwvvvvwx has joined #nixos
justanotheruser has quit [(Quit: WeeChat 1.5)]
mguentner has quit [(Quit: WeeChat 1.6)]
justanotheruser has joined #nixos
sdothum has quit [(Quit: ZNC - 1.6.0 - http://znc.in)]
filterfish has joined #nixos
mguentner has joined #nixos
mkoenig has quit [(Read error: Connection reset by peer)]
mkoenig has joined #nixos
<NixOS_GitHub> [nixpkgs] garbas opened pull request #21631: vimPlugins: update to latest (master...vim-update) https://github.com/NixOS/nixpkgs/pull/21631
mkoenig has quit [(Remote host closed the connection)]
mizu_no_oto has joined #nixos
filterfish has quit [(Ping timeout: 245 seconds)]
johnsonav has quit [(Ping timeout: 245 seconds)]
ublubu has quit [(Ping timeout: 256 seconds)]
cpennington has quit [(Remote host closed the connection)]
mguentner2 has joined #nixos
mizu_no_oto has quit [(Ping timeout: 248 seconds)]
Fare has quit [(Ping timeout: 245 seconds)]
filterfish has joined #nixos
mguentner has quit [(Ping timeout: 272 seconds)]
filterfish has quit [(Remote host closed the connection)]
filterfish has joined #nixos
mizu_no_oto has joined #nixos
ublubu has joined #nixos
filterfish_ has joined #nixos
filterfish has quit [(Read error: Connection reset by peer)]
filterfish_ has quit [(Remote host closed the connection)]
filterfish_ has joined #nixos
ublubu has quit [(Ping timeout: 272 seconds)]
filterfish_ has quit [(Read error: No route to host)]
filterfish has joined #nixos
filterfish has quit [(Read error: Connection reset by peer)]
<pie_> Profpatsch, put my nixos sticker on my laptop #feelsgoodman
filterfish has joined #nixos
<pie_> now it just needs actual nixos :X
<pie_> * :C
Fare has joined #nixos
<NixOS_GitHub> [nixpkgs] veprbl opened pull request #21632: sherpa: fix sqlite dependency (master...sherpa_fix) https://github.com/NixOS/nixpkgs/pull/21632
__red__ has joined #nixos
AllanEsp1nosa has quit [(Ping timeout: 256 seconds)]
johnsonav has joined #nixos
<__red__> so the url for zlib-1.2.8 appears to not exist
<__red__> advice?
<__red__> this is a nixos-install if that makes any difference
<__red__> (as opposed to a rebuild - ie, everything's in /mnt)
<__red__> can I just put the .tar.gz file somewhere and have it find it
justanotheruser has quit [(Quit: WeeChat 1.5)]
<__red__> assuming I can locate it from somewhere else?
indi_ has joined #nixos
indi_ has quit [(Remote host closed the connection)]
ublubu has joined #nixos
justanotheruser has joined #nixos
indi_ has joined #nixos
amarsman has quit [(Ping timeout: 248 seconds)]
filterfish has quit [(Ping timeout: 248 seconds)]
filterfish_ has joined #nixos
jgrasser has joined #nixos
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
indi_ has quit [(Ping timeout: 246 seconds)]
alx741_ has joined #nixos
alx741 has quit [(Ping timeout: 272 seconds)]
edvorg has joined #nixos
regnat[m] has quit [(Read error: Connection reset by peer)]
M-wkennington has quit [(Read error: Connection reset by peer)]
lfont[m] has quit [(Read error: Connection reset by peer)]
rsynnest[m] has quit [(Read error: Connection reset by peer)]
jcl[m] has quit [(Write error: Connection reset by peer)]
regnt[m] has quit [(Write error: Connection reset by peer)]
citizenziggy[m] has quit [(Write error: Connection reset by peer)]
cornu1 has quit [(Write error: Connection reset by peer)]
primeos[m] has quit [(Write error: Connection reset by peer)]
davidar has quit [(Write error: Connection reset by peer)]
Shell has quit [(Write error: Connection reset by peer)]
nhooyr has quit [(Read error: Connection reset by peer)]
SShrike has quit [(Write error: Connection reset by peer)]
baldo[m] has quit [(Read error: Connection reset by peer)]
av[m] has quit [(Read error: Connection reset by peer)]
unlmtd[m] has quit [(Read error: Connection reset by peer)]
cinderfish[m] has quit [(Write error: Connection reset by peer)]
rycee[m] has quit [(Write error: Connection reset by peer)]
icetan has quit [(Read error: Connection reset by peer)]
mythmon- has quit [(Write error: Connection reset by peer)]
prose[m] has quit [(Write error: Connection reset by peer)]
chexxor_web[m] has quit [(Read error: Connection reset by peer)]
offlinehacker[m] has quit [(Read error: Connection reset by peer)]
mindB has quit [(Write error: Connection reset by peer)]
aspiwack[m] has quit [(Write error: Connection reset by peer)]
M-jackal has quit [(Write error: Connection reset by peer)]
saintaquinas[m] has quit [(Read error: Connection reset by peer)]
jack[m] has quit [(Read error: Connection reset by peer)]
Grill[m] has quit [(Read error: Connection reset by peer)]
masia[m] has quit [(Write error: Connection reset by peer)]
bennofs_matrix has quit [(Write error: Connection reset by peer)]
zimbatm[m] has quit [(Read error: Connection reset by peer)]
M-appservice_irc has quit [(Read error: Connection reset by peer)]
Ralith has quit [(Read error: Connection reset by peer)]
ArdaXi[m] has quit [(Read error: Connection reset by peer)]
herzmeister[m]1 has quit [(Read error: Connection reset by peer)]
bachp has quit [(Write error: Connection reset by peer)]
M-Shrike has quit [(Write error: Connection reset by peer)]
M-manveru has quit [(Write error: Connection reset by peer)]
Kiko[m] has quit [(Read error: Connection reset by peer)]
M-Rym has quit [(Read error: Connection reset by peer)]
M41px[m] has quit [(Write error: Connection reset by peer)]
MrAxilus[m] has quit [(Write error: Connection reset by peer)]
musicmatze[m] has quit [(Write error: Connection reset by peer)]
guanjian[m] has quit [(Write error: Connection reset by peer)]
org-rubo78[m] has quit [(Write error: Connection reset by peer)]
bendlas has quit [(Write error: Connection reset by peer)]
ntninja has quit [(Read error: Network is unreachable)]
M-roblabla has quit [(Write error: Connection reset by peer)]
M-schneeflocke has quit [(Write error: Connection reset by peer)]
eqyiel[m] has quit [(Write error: Connection reset by peer)]
bzf[m] has quit [(Read error: Connection reset by peer)]
Guest11481 has quit [(Write error: Connection reset by peer)]
filterfish_ has quit [(Remote host closed the connection)]
filterfish_ has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg opened pull request #21633: pulseaudio nixos: do not force start pulseaudio.service and use upstream units (master...f/pa) https://github.com/NixOS/nixpkgs/pull/21633
filterfish_ has quit [(Remote host closed the connection)]
filterfish_ has joined #nixos
Fare has quit [(Ping timeout: 248 seconds)]
<NixOS_GitHub> [nixpkgs] peterhoeg opened pull request #21634: qscintilla: 2.9 -> 2.9.4 and support for qt5 (master...f/qscint) https://github.com/NixOS/nixpkgs/pull/21634
Lowl3v3l has quit [(Ping timeout: 246 seconds)]
<pie_> so i just ran rebuild switch --upgrade and im getting "Failed to start local-fs.target: Unit -.mount is masked."
<pie_> any ideas?
<pie_> i resized my partitions idk if that has anythign to do with it
cinderfish[m] has joined #nixos
nanobapt has joined #nixos
Lowl3v3l has joined #nixos
Lowl3v3l has quit [(Ping timeout: 248 seconds)]
nanobapt has quit [(Ping timeout: 258 seconds)]
fritschy has joined #nixos
filterfish_ has quit [(Ping timeout: 272 seconds)]
zagy has joined #nixos
jcl[m] has joined #nixos
herzmeister[m] has joined #nixos
M41px[m] has joined #nixos
M-manveru has joined #nixos
bachp has joined #nixos
primeos[m] has joined #nixos
jack[m] has joined #nixos
MrAxilus[m] has joined #nixos
Grill[m] has joined #nixos
M-Rym has joined #nixos
org-rubo78[m] has joined #nixos
ntninja has joined #nixos
Kiko[m] has joined #nixos
mindB has joined #nixos
regnt[m] has joined #nixos
unlmtd[m] has joined #nixos
SShrike has joined #nixos
M-roblabla has joined #nixos
guanjian[m] has joined #nixos
aspiwack[m] has joined #nixos
eqyiel[m] has joined #nixos
cornu has joined #nixos
citizenziggy[m] has joined #nixos
rycee[m] has joined #nixos
ArdaXi[m] has joined #nixos
prose[m] has joined #nixos
bzf[m] has joined #nixos
offlinehacker[m] has joined #nixos
masia[m] has joined #nixos
bennofs_matrix has joined #nixos
bendlas has joined #nixos
M-jackal has joined #nixos
nhooyr has joined #nixos
chexxor_web[m] has joined #nixos
davidar has joined #nixos
M-Shrike has joined #nixos
regnat[m] has joined #nixos
icetan has joined #nixos
M-appservice_irc has joined #nixos
mythmon- has joined #nixos
rsynnest[m] has joined #nixos
Shell has joined #nixos
av[m] has joined #nixos
M-wkennington has joined #nixos
M-schneeflocke has joined #nixos
zimbatm[m] has joined #nixos
saintaquinas[m] has joined #nixos
musicmatze[m] has joined #nixos
baldo[m] has joined #nixos
Ralith has joined #nixos
Guest19794 has joined #nixos
lfont[m] has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg opened pull request #21635: tora: init at 3.0 (master...p/tora) https://github.com/NixOS/nixpkgs/pull/21635
ryanartecona has joined #nixos
xwvvvvwx has quit [(Ping timeout: 240 seconds)]
ryanartecona has quit [(Client Quit)]
<domenkozar> gchristensen: https://keybase.io/ielectric
Rotaerk has quit [(Read error: Connection reset by peer)]
proteusguy has quit [(Quit: Leaving)]
amarsman has joined #nixos
aarvar has joined #nixos
fre has quit [(Quit: WeeChat 1.6)]
MichaelRaskin has quit [(Quit: MichaelRaskin)]
ebzzry has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] LnL7 pushed 2 new commits to master: https://github.com/NixOS/nixpkgs/compare/fa89f84c546b...118af5d2ea4b
<NixOS_GitHub> nixpkgs/master 1dc199d Chris Martin: stellar-core: init at 0.5.1
<NixOS_GitHub> nixpkgs/master 118af5d Daiderd Jordan: Merge pull request #21605 from chris-martin/pr/stellar-core...
rly has joined #nixos
eacameron has quit [(Remote host closed the connection)]
ckauhaus has joined #nixos
rly has quit [(Ping timeout: 246 seconds)]
teknico has joined #nixos
<NixOS_GitHub> [nixpkgs] tari opened pull request #21636: flexget: 1.2.337 -> 2.8.17 (master...flexget-upgrade) https://github.com/NixOS/nixpkgs/pull/21636
Itkovian has joined #nixos
aarvar has quit [(Ping timeout: 248 seconds)]
reinzelmann has joined #nixos
aarvar has joined #nixos
kampfschlaefer has joined #nixos
<NixOS_GitHub> [nixpkgs] benley opened pull request #21638: insync: init at 1.3.13.36129 (master...insync) https://github.com/NixOS/nixpkgs/pull/21638
nschoe has joined #nixos
amarsman_ has joined #nixos
rootnode has joined #nixos
amarsman has quit [(Ping timeout: 248 seconds)]
amarsman_ is now known as amarsman
<rootnode> how can I add entries to /etc/services?
vcunat has joined #nixos
<rootnode> smtps is not in there, and I want to add it
<NixOS_GitHub> [nixpkgs] fpletz opened pull request #21639: mitmproxy: 0.17.1 -> 1.0.2 (master...pkg/mitmproxy) https://git.io/vMOP1
vcunat has quit [(Client Quit)]
filterfish has joined #nixos
<fpletz> domenkozar: but you should give gchristensen at least give gchristensen your fingerprint over another channel :)
<fpletz> domenkozar: we should've signed our keys when you were in munich :)
systemfault has quit [(Quit: Bye!)]
rly has joined #nixos
goibhniu has joined #nixos
edvorg has quit [(Ping timeout: 248 seconds)]
shanemikel has joined #nixos
guillaum1 has joined #nixos
stkj has joined #nixos
jgertm_ has joined #nixos
shanemikel has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
aarvar has quit [(Ping timeout: 245 seconds)]
matthewbauer has quit [(Ping timeout: 246 seconds)]
<guillaum1> Am I right that gcc is inside the "gcc-wrapper" package? Why cannot I install it side by side with clang?
ThatDocsLady has joined #nixos
ixxie has joined #nixos
<stkj> hello. I'm trying to package a closed source software: acestream-engine. You can see the arch linux PKGBUILD in https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=acestream-engine. I'm using https://nixos.org/wiki/How_to_package_closed-source_software as a guide. Everuthing seems to go fine but at execution I get the following error message: Cannot load libraries: path /usr/share/acestream/lib
<stkj> Traceback (most recent call last):
<stkj> File "<entry>", line 6, in <module>
<stkj> ImportError: No module named acestreamengine.Core
<stkj> pedro@nixos /n/s/y/o/acestreamengine> ls
<stkj>
<stkj> help?
mguentner2 is now known as mguentner
shanemikel has joined #nixos
aarvar has joined #nixos
<stkj> this is what I'm using to build the package: http://pastebin.com/pxLmbuuZ
<sphalerite> “[NixOps] uses a single formalism (the Nix expression language) for package management and system configuration management” is the expression language really a formalism though, given that it doesn't have a spec? :D
takle has quit [(Remote host closed the connection)]
<sphalerite> stkj: it seems to use a hardcoded path. You may need to set up an FHS chroot environment, which is a pain.
<stkj> sphalerite: thanks!
<manveru> anyone know the state of the nix cli rewrite?
ChongLi_ has joined #nixos
<NixOS_GitHub> [nixpkgs] aszlig pushed 11 new commits to nixpart: https://github.com/NixOS/nixpkgs/compare/ddc083d8729d...4fbea844332e
<NixOS_GitHub> nixpkgs/nixpart 567ce68 aszlig: nixos/storage: Move module into its own directory...
<NixOS_GitHub> nixpkgs/nixpart cf912a1 aszlig: storage: Move types and sizeUnits into new lib.nix...
<NixOS_GitHub> nixpkgs/nixpart 0b656c0 aszlig: nixos/storage: Add options for matching disks...
derjohn_mob has joined #nixos
ChongLi has quit [(Read error: Connection reset by peer)]
rootnode has quit [(Ping timeout: 248 seconds)]
takle has joined #nixos
mudri` has joined #nixos
takle_ has joined #nixos
takle has quit [(Ping timeout: 272 seconds)]
takle_ has quit [(Ping timeout: 258 seconds)]
eacameron has joined #nixos
<NixOS_GitHub> [nixpkgs] garbas closed pull request #21631: vimPlugins: update to latest (master...vim-update) https://git.io/vMO2S
<NixOS_GitHub> [nixpkgs] garbas pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/2c8841427403382863e011e2cadfa31b84e7c9fa
<NixOS_GitHub> nixpkgs/master 2c88414 Rok Garbas: vimPlugins: update to latest
<NixOS_GitHub> [nixpkgs] mguentner opened pull request #21640: cpp-ipfs-api: 2016-11-09 -> 2017-01-04 (master...cpp_ipfs_api_update) https://github.com/NixOS/nixpkgs/pull/21640
takle has joined #nixos
eacameron has quit [(Ping timeout: 246 seconds)]
armin has quit [(Quit: relate to the matter as i drop the bomb)]
thc202 has joined #nixos
takle has quit [(Ping timeout: 246 seconds)]
armin has joined #nixos
georges-duperon has joined #nixos
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to master: https://git.io/vMODD
<NixOS_GitHub> nixpkgs/master e17b483 Nikolay Amiantov: glslang, spirv-tools, vulkan-loader: add metainformation
takle has joined #nixos
roconnor has quit [(Ping timeout: 248 seconds)]
<LnL> manveru: nixUnstable has the new cli, no idea how complete it is. I use a shell wrapper around nix
matthewbauer has joined #nixos
stkj has quit [(Ping timeout: 246 seconds)]
shanemikel has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
aarvar has quit [(Ping timeout: 245 seconds)]
matthewbauer has quit [(Ping timeout: 256 seconds)]
civodul has joined #nixos
systemfault has joined #nixos
dgn has joined #nixos
<LnL> oh we do have a conventions/styleguide section in the manual
itsN1X has joined #nixos
<itsN1X> Kmicu:
<LnL> I think we should expand that a bit
aarvar has joined #nixos
<itsN1X> Kmicu: help with documentation updates..
itsN1X has quit [(Read error: Connection refused)]
ixxie has quit [(Remote host closed the connection)]
itsN1X has joined #nixos
FPtje has joined #nixos
<FPtje> Is there any way to perform bit operations in Nix? I'd like to convert a number to an IP address, so I can generate IP addresses with some function and some integer maths
mudri` has quit [(Ping timeout: 256 seconds)]
<itsN1X> We can write a small script..
<FPtje> A small script?
itsN1X has quit [(Remote host closed the connection)]
slack1256 has joined #nixos
ebzzry has joined #nixos
itsN1X has joined #nixos
AndroUserN1X has joined #nixos
systemfault has quit [(Quit: Bye!)]
AndroUserN1X has quit [(Read error: Connection reset by peer)]
itsN1X has quit [(Read error: Connection reset by peer)]
AndroUserN1X has joined #nixos
itsN1X has joined #nixos
aarvar has quit [(Ping timeout: 246 seconds)]
<pie_> hey guys im trying to install pycharm but i cant figure out what the name for it is when using -A
<pie_> well, gotta love trial and error
<pie_> nixpkgs.pkgs.idea.pycharm-community
<ikwildrpepper> pie_: I often use nix-repl for that
<pie_> yeah i still havent learned how to use things right :P
<pie_> havent had time :C
<ocharles_> clock-0.7.2-F8VROn58uQAEUzw5NR8nBM
<ocharles_> whoops
<pie_> im happy i can breathe
<ocharles_> "installed package extra-1.5.1 is broken due to missing package clock-0.7.2-F8VROn58uQAEUzw5NR8nBM"
<ikwildrpepper> e.g.: http://pastebin.com/v6pFFRXa
<ocharles_> didn't think I'd see that error again :'(
<pie_> ikwildrpepper, hm ok, but i didnt know to look under idea
<ikwildrpepper> ocharles_: what kind of error is that? :o
gleam_ has joined #nixos
<ikwildrpepper> pie_: the examples shows the result of tab completion
<ocharles_> but those instructions don't seem to fix it now
<ikwildrpepper> ugh
<ocharles_> However, I might have packaged extra wrong
<LnL> ocharles_: what version off ghc is that?
<ocharles_> HEAD
<ocharles_> but I think it's because clock is in extraLibraries, but that might be the wrong place
AndroUserN1X has quit [(Remote host closed the connection)]
itsN1X has quit [(Remote host closed the connection)]
<LnL> I hope so, distributed/parallel builds are nice
page has quit [(Ping timeout: 250 seconds)]
<ocharles_> ok, yes - don't put haskell libraries in extraLibraries
<ocharles_> phew!
<gleam_> hi all! What would be the way to configure per user settings as i3wm layouts or xterm colors? should I copy the .Xdefaults in the home directory or can I specifiy the settings in configuration.nix?
<LnL> not that I know, but you can create arbitrary files in /etc and create a symlink in your home directory
<LnL> environment.etc."per-user/foo/Xdefaults".text = '' ... '';
AndroUserN1X has joined #nixos
itsN1X has joined #nixos
<LnL> ikwildrpepper: might be wrong, I've been seeing an increased number of build timeouts on hydra
page has joined #nixos
<LnL> just FYI
Shou has joined #nixos
aarvar has joined #nixos
matthewbauer has joined #nixos
john_due has joined #nixos
matthewbauer has quit [(Ping timeout: 256 seconds)]
<john_due> Hi all
<Devices> hello
<john_due> Hi have a question: I would like to upgrate my version of xorg-server to the 1.19.0 but I am not sure how I should proceed
<john_due> can I just compile and install the new version? or should I create a nix package for it?
<AndroUserN1X> Kmicu: That's why documentation!
itsN1X has quit [(Quit: quitting AndroIRC - Android IRC Client ( http://www.androirc.com ))]
AndroUserN1X has quit [(Quit: quitting AndroIRC - Android IRC Client ( http://www.androirc.com ))]
itsN1X has joined #nixos
<goibhniu> john_due: (assuming that version isn't already in nixpkgs master) ... updating the package would be the way to go
<goibhniu> john_due: AFAIK there's a script to generate the nix expressions for xorg
hoodoo_wrk has joined #nixos
itsN1X has quit [(Read error: Connection refused)]
<john_due> do you know where to find it?
aarvar has quit [(Ping timeout: 272 seconds)]
mudri` has joined #nixos
itsN1X has joined #nixos
AndroUserN1X has joined #nixos
<goibhniu> sorry, I don't know offhand
<john_due> ok, thanks I will look for it
<goibhniu> john_due: check out nixpkgs/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
<goibhniu> I think that's it
<john_due> thanks!
<goibhniu> you're welcome
<LnL> john_due: if you are lucky you might be able to just .override the src in packageOverrides
<LnL> but that probably won't be enough
<john_due> LnL: you mean in /nixpkgs/pkgs/servers/x11/xorg/overrides.nix ?
<gleam_> LnL, That was what I was looking for. Thanks!
<LnL> no in configuration.nix nixpkgs.packageOverride
AndroUserN1X has quit [(Remote host closed the connection)]
itsN1X has quit [(Read error: Connection refused)]
derjohn_mob has quit [(Ping timeout: 256 seconds)]
<john_due> generate-expr-from-tarballs.pl uses perl #! /usr/bin/perl -w but my perl is in /nix/store/5kkjn2h1m852q8xh5kz0kfgi5nrbc1fz-perl-5.22.2/bin/perl
<john_due> how should I fix it without hardcoding the path in the script?
Lowl3v3l has joined #nixos
<goibhniu> odd ... `perl generate-expr-from-tarballs.pl` should also work though
hoodoo_wrk has quit [(Ping timeout: 260 seconds)]
<rly> john_due: if that file is committed, please open a bug report for that or fix it at the same time you do a PR for this work.
<goibhniu> john_due: I hope that script is what the current maintainers use ... it might be best to check before wasting time on it
slack1256 has quit [(Remote host closed the connection)]
itsN1X has joined #nixos
itsN1X has quit [(Read error: Connection refused)]
itsN1X has joined #nixos
<LnL> john_due: /usr/bin/perl in a nixos script :(
<john_due> the file is commited, but I started using nixos yesterday, I don't feel comfortable committing fixes yet
itsN1X has quit [(Remote host closed the connection)]
<LnL> john_due: open a pr, maintainers will review it before it's merged in
aarvar has joined #nixos
<avn> john_due: if you working on new package -- `patchShebang .` will fix FHS references for interpreters according your build environment
<avn> john_due: fixing bugs here much easier, than in other distros
<LnL> john_due: /usr/bin/env perl works everywhere
itsN1X has joined #nixos
AndroUserN1X has joined #nixos
<john_due> and the -w?
<john_due> do I just drop it?
habibi has joined #nixos
AndroUserN1X has quit [(Remote host closed the connection)]
itsN1X has quit [(Remote host closed the connection)]
itsN1X has joined #nixos
AndroUserN1X has joined #nixos
<NixOS_GitHub> [nixpkgs] grahamc pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/6a68b9526680c249491fc8ed9f96ed33b89b73f5
<NixOS_GitHub> nixpkgs/master 6a68b95 Graham Christensen: chase: correct download URL...
<gchristensen> ikwildrpepper: do you have a gpg key?
mudri` has quit [(Ping timeout: 248 seconds)]
ertesx has joined #nixos
itsN1X has quit [(Remote host closed the connection)]
AndroUserN1X has quit [(Remote host closed the connection)]
derjohn_mob has joined #nixos
<gchristensen> ikwildrpepper, domenkozar: can you both sign a commit somewhere and push to github?
ertes has quit [(Ping timeout: 256 seconds)]
ertesx is now known as ertes
<LnL> john_due: add it after the perl command just like before
takle has quit [(Remote host closed the connection)]
<LnL> gchristensen: are you planning something special?
<gchristensen> LnL: hehe, nothing too too special, just trying to make this page! https://github.com/NixOS/nixos-homepage/pull/123/files :)
<LnL> ah, good idea
<gchristensen> then we'll be almost done with (and can close) https://github.com/NixOS/nixpkgs/issues/13515
jensens has joined #nixos
<john_due> LnL: this way doesn't work: #! /usr/bin/env perl -w -> /usr/bin/env: ‘perl -w’: No such file or directory
<LnL> do you have perl in your path?
takle has joined #nixos
<ikwildrpepper> gchristensen: if you tell me how
matthewbauer has joined #nixos
ThatDocsLady has quit [(Quit: Arma-geddin-outta-here!)]
<gchristensen> ikwildrpepper: add it to github: https://help.github.com/articles/adding-a-new-gpg-key-to-your-github-account/ then configure git to use your key: https://help.github.com/articles/telling-git-about-your-gpg-key/ (You'll also want to run `git config --global gpg.program gpg2`) and then you can sign an individual commit with `git commit -S ...` or all commits with `git config --global commit.gpgsign true`
<gchristensen> ikwildrpepper: and (of course) you'll want gnupg installed, perhaps in your systemPackages
<gchristensen> domenkozar: ^
matthewbauer has quit [(Ping timeout: 256 seconds)]
aarvar has quit [(Ping timeout: 245 seconds)]
<gchristensen> and if you need more help, let me know ikwildrpepper
<john_due> LnL: yes: [nix-shell:~/Downloads]$ which perl
<john_due> -
<john_due> -- /nix/store/5kkjn2h1m852q8xh5kz0kfgi5nrbc1fz-perl-5.22.2/bin/perl
<NixOS_GitHub> [nixops] rbvermaa pushed 1 new commit to master: https://github.com/NixOS/nixops/commit/725a59a1e442e39e7118c86c1bbb23d1df86c854
<NixOS_GitHub> nixops/master 725a59a Rob Vermaas: Add --keep-going and --fallback to virtualbox creation script for convenience.
michaelpj has joined #nixos
<ikwildrpepper> gchristensen: ugh
<NixOS_GitHub> [nixops] rbvermaa pushed 1 new commit to master: https://github.com/NixOS/nixops/commit/1d8830dfc876fc0f5fb86c8016a79e67180a1978
<NixOS_GitHub> nixops/master 1d8830d Rob Vermaas: Whitespace
<gchristensen> ikwildrpepper: the "unverified" bit?
<ikwildrpepper> switched my commit email to logicblox.com for now
<ikwildrpepper> so now it should be verified
<john_due> LnL: without the -w it works: #! /usr/bin/env perl but I don't know what -w does so I am not sure about dropping it
<gchristensen> you can add your other email to the key, ikwildrpepper
<NixOS_GitHub> [nixops] rbvermaa pushed 1 new commit to master: https://git.io/vMOFT
<NixOS_GitHub> nixops/master 2d8b282 Rob Vermaas: Undo previous commit
<ikwildrpepper> gchristensen: hm, that still results in unverified
<ikwildrpepper> ok fixed now
ixxie has joined #nixos
<gchristensen> woohoo! can you run `gpg2 --send-keys 0xe114a5f264a8ae8e` to update your key on the keyserver?
stepcut has quit [(Remote host closed the connection)]
bennofs has joined #nixos
aarvar has joined #nixos
sdothum has joined #nixos
<ikwildrpepper> dine
<ikwildrpepper> done
<ikwildrpepper> gchristensen: ^
<gchristensen> hrmm.. interesting, did you add your second email to the key?
ThatDocsLady has joined #nixos
<ikwildrpepper> gchristensen: yeah
<gchristensen> maybe it'll just take a few minutes for it to show up here: https://pgp.mit.edu/pks/lookup?search=0xe114a5f264a8ae8e&op=index
<rly> I am using KDE5. How do I make sure that none of the "user made an error" popups make a sound?
<ikwildrpepper> gchristensen: it's updated
<goibhniu> rly: System Settings -> Notifications
<goibhniu> (I think)
<gchristensen> ikwildrpepper: perfect, thank you :D https://github.com/NixOS/nixos-homepage/pull/123 is basically ready, we can wait for domenkozar or updated it later when he signs a commit
<NixOS_GitHub> [nixpkgs] FaustXVI opened pull request #21641: [WIP] openjdk : add version 6 (master...add-openjdk6) https://github.com/NixOS/nixpkgs/pull/21641
Lowl3v3l has quit [(Ping timeout: 272 seconds)]
Lowl3v3l has joined #nixos
<gchristensen> #16! we're coming up on 4 months of roundups.
mkoenig has joined #nixos
systemfault has joined #nixos
ebzzry has quit [(Ping timeout: 258 seconds)]
samvher has joined #nixos
takle has quit [(Remote host closed the connection)]
alx741_ has quit [(Quit: alx741_)]
Fare has joined #nixos
takle has joined #nixos
<LnL> gchristensen: I'll take a look after work, more stuff then last time it seems
<gchristensen> yeah :) christmas presents!
<LnL> Also looks like I got curl/libarchive out of the stdenv just in time :)
<gchristensen> oh wow did that merge?
matthewbauer has joined #nixos
<LnL> yes, I merged it into master yesterday because of the curl update
<gchristensen> congratulations :D
<LnL> everything with those changes was already built by hydra
bennofs has quit [(Ping timeout: 240 seconds)]
<gchristensen> I feel really proud that many times we are ahead of other distros in patching
<gchristensen> we patched against libarchive in November
Wizek has joined #nixos
Wizek_ has joined #nixos
proteusguy has joined #nixos
<gchristensen> and NeQuissimus got us patched on curl yesterday :)
<LnL> yeah, I commented on the commit but assumed it was a security update
matthewbauer has quit [(Ping timeout: 258 seconds)]
<gchristensen> hrmmm nice to see spacekitteh's libssh2 PR merge to master finally
<LnL> oh was staging merged in?
<gchristensen> I think so, yeah
<LnL> I don't think it built everything yet tho
Fare has quit [(Ping timeout: 248 seconds)]
<NixOS_GitHub> [nixpkgs] symphorien opened pull request #21643: Python tix module (master...python-tix) https://github.com/NixOS/nixpkgs/pull/21643
<gchristensen> https://github.com/NixOS/nixpkgs/compare/staging around december 29 it merged
<LnL> ah yes, the previous one
<gchristensen> oh and "nixos/glance: init at liberty version" too
mudri` has joined #nixos
aarvar has quit [(Ping timeout: 248 seconds)]
habibi_ has joined #nixos
derjohn_mob has quit [(Ping timeout: 258 seconds)]
oida has joined #nixos
habibi has quit [(Ping timeout: 245 seconds)]
Fare has joined #nixos
c0bw3b has joined #nixos
jensens has quit [(Ping timeout: 248 seconds)]
<NixOS_GitHub> [nixpkgs] mdorman opened pull request #21644: Automated Emacs package updates (master...emacs-updates) https://github.com/NixOS/nixpkgs/pull/21644
samvher has quit [(Ping timeout: 248 seconds)]
FareTower has joined #nixos
<srhb> How do I get ansible to see some python dependency? Must I override its buildInputs?
samvher has joined #nixos
Fare has quit [(Ping timeout: 245 seconds)]
<schneefux> gchristensen: The stickers arrived today. Thank you very much <3
<garbas> srhb: you would need to use overrideDerivation and extend propagatedNativeBuildInputs
derjohn_mob has joined #nixos
<srhb> garbas: Thanks
<gchristensen> schneefux: :D you're welcome, sorry they're so late! <3
<schneefux> no worries ;)
guillaum1 has quit [(Ping timeout: 272 seconds)]
Shou has quit [(Ping timeout: 245 seconds)]
fare__ has joined #nixos
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to release-16.09: https://github.com/NixOS/nixpkgs/commit/8e04c7112c5852a876ed19ae92c328f270666976
<NixOS_GitHub> nixpkgs/release-16.09 8e04c71 Michael Raskin: firejail: -> 0.9.44.2
FareTower has quit [(Ping timeout: 256 seconds)]
cjhowe has joined #nixos
aarvar has joined #nixos
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/a4868509923aebd66b2aa9aa1d260d882e159b5e
<NixOS_GitHub> nixpkgs/master a486850 Michael Raskin: xdg_utils: mimiSupport: update to the latest master
systemfault has quit [(Quit: Bye!)]
cjhowe has quit [(Client Quit)]
itsN1X has joined #nixos
aarvar has quit [(Ping timeout: 246 seconds)]
Shou has joined #nixos
takle has quit [(Remote host closed the connection)]
<gchristensen> hot diggity dog, michaelraskin kicking butt today
<gchristensen> itsN1X: if you would like to help, you can help triage issues here: https://github.com/NixOS/nixpkgs/issues/21642
samvher has quit [(Ping timeout: 248 seconds)]
samvher has joined #nixos
johnw has quit [(Read error: Connection reset by peer)]
takle has joined #nixos
matthewbauer has joined #nixos
guillaum1 has joined #nixos
itsN1X has quit [(Ping timeout: 240 seconds)]
alx741 has joined #nixos
matthewbauer has quit [(Ping timeout: 272 seconds)]
Shou has quit [(Ping timeout: 245 seconds)]
<gchristensen> LnL: do you use nix-daemon on darwin + nixops?
<LnL> no I have a pretty nice nixos desktop now for that sort of stuff
<LnL> I think we'd need nix-build flags for remote builds to make that work properly
<LnL> that way a trusted user could add a build machine interactively
<gchristensen> yeah :/
ryantrinkle has quit [(Ping timeout: 248 seconds)]
<gchristensen> esp. if people keeping pushing forwards on using the daemon on darwin (cc niksnut for nix changes, ikwildrpepper for nixops changes)
<LnL> I think it would be a useful feature in general
cjhowe has joined #nixos
<LnL> eg. I can tell a large build to use my desktop when I'm at home
<gchristensen> (back in a few)
fare__ has quit [(Quit: Leaving)]
<LnL> I should really integrate my installer script into nix-darwin
<NixOS_GitHub> [nixpkgs] madjar opened pull request #21645: nox: update to 0.0.5 (master...update-nox) https://github.com/NixOS/nixpkgs/pull/21645
Shou has joined #nixos
samvher has quit [(Ping timeout: 248 seconds)]
samvher has joined #nixos
mbrgm has quit [(Ping timeout: 248 seconds)]
<gchristensen> :( our java tooling is really sub-par compared to other langs
<srhb> I don't get it. I get an ansible in path that can execute, but it can't see the kazoo module: http://lpaste.net/1769800682304438272
<gchristensen> if someone wanted to improve that, we could do something like that convert-nix-from-perl-to-c++ fundraiser
mbrgm has joined #nixos
<LnL> yeah, didn't somebody build some maven infrastructure stuff?
<NixOS_GitHub> [nixpkgs] lsix opened pull request #21646: gnused: 4.2.2 -> 4.3 (staging...update_sed) https://github.com/NixOS/nixpkgs/pull/21646
<icetan> I have made a sketchy maven2nix thingy for work, couldn't get the one shipped in nixpkgs work with our repos
<LnL> gchristensen: whoa, at this rate everything will be finished by the time I get home
<gchristensen> LnL: I know? jeepers!
<gchristensen> I'm not unhappy about it :P
mbrgm has quit [(Ping timeout: 248 seconds)]
ixxie has quit [(Remote host closed the connection)]
mbrgm has joined #nixos
<gchristensen> icetan: how sketchy? :P I haven't been able to get nixpkgs' one to work, either
<gchristensen> and actually now I don't even know what I'm doing ... I'm wanting to package https://github.com/tumblr/collins which uses the play framework
<icetan> hehe, it's pretty hacky but it works for us
<gchristensen> which I'm _sure_ is just a headache waiting to happen
eacameron has joined #nixos
<icetan> don't know about sbt stuff though, but because they both use ivy that it should be not too much work to make it compatible with that also
samvher has quit [(Ping timeout: 272 seconds)]
<icetan> we have some scala stuff at work also which I have been wishing to include in my nix builds also
<gchristensen> oh I see
<gchristensen> unfortunately this isn't really what I can spend my time on today :(
<gchristensen> but good to know someone thinks it is somewhat possible!
<gchristensen> I'll probably just use the pre-built docker container and pretend it isn't happening
Devices has left #nixos ["WeeChat 1.6"]
<icetan> haha
<icetan> I saw that there was a nix scala channel on IRC but it looked dead
<gchristensen> "Tom Nix. CEO at Scala" they should have this figured out ;)
<icetan> gchristensen: but if you are interested I can send you the scripts, would be nice to make something official
<gchristensen> "Scala picks up Nix"
<gchristensen> sure, that would be helpful
eacameron has quit [(Ping timeout: 246 seconds)]
<icetan> wow, have not seen that!
<gchristensen> charlesofarrell_: ping
cpennington has joined #nixos
fritschy has quit [(Quit: Leaving.)]
cjhowe has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
john_due has quit [(Remote host closed the connection)]
devhell has joined #nixos
bfrog_ has joined #nixos
eacameron has joined #nixos
<gchristensen> icetan: it doesn't seem to work, but not sure :) we'll find out, there is a channel for this. ##nix-sbt
[0x4A6F]1 has joined #nixos
matthewbauer has joined #nixos
<icetan> yupp, i was in that channel a while back, but it was very quiet
<icetan> maybe i forgot about the repo
eacameron has quit [(Ping timeout: 272 seconds)]
[0x4A6F] has quit [(Remote host closed the connection)]
[0x4A6F]1 is now known as [0x4A6F]
zagy has quit [(Quit: Leaving.)]
roconnor has joined #nixos
<Profpatsch> pie_: \o/
<icetan> trying it out now
matthewbauer has quit [(Ping timeout: 245 seconds)]
<icetan> gchristensen: not working for me either
<gchristensen> grr... everything is super frustrating today.
cjhowe has joined #nixos
<mguentner> gchristensen: +1
SuprDewd has quit [(Ping timeout: 258 seconds)]
gleam_ has quit [(Quit: Page closed)]
SuprDewd has joined #nixos
john_due has joined #nixos
msd has joined #nixos
<john_due> re-hello
cjhowe has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<john_due> I am trying to compile the intel video driver on nixos. It needs to have x11 in the path. I am trying something like buildInputs = [ pkgs.clang pkgs.pkgconfig pkgs.xlibs.xproto pkgs.pixman pkgs.xlibs.xorg-server] but it crashes saying error: attribute ‘xorg-server’ missing
cjhowe has joined #nixos
<msd> domenkozar: got QEMU fully working. Is PCI forwarding supported across multiple QEMU machines in NixOS?
<msd> domenkozar: or nixops, rather?
Guest66666 has quit [(Ping timeout: 258 seconds)]
Guest66666 has joined #nixos
dsieczko has joined #nixos
<LnL> john_due: xorg.xorgserver
cjhowe has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<john_due> LnL: thanks! it works. But how did you find it out?
<LnL> for stuff like this nix-repl is very nice
bennofs has joined #nixos
<LnL> run nix-repl '<nixpkgs>' and you have a repl with tab completion
<john_due> LnL: yes, it is indeed! thanks. I don't understand why sometime we use nix-env -i and sometime nix-env -iA
<LnL> -i is based on name, -iA uses the attribute
<LnL> except for nix-env -i nothing really uses the name, and for nix-env it's also very slow
<john_due> LnL: and where can I see the attributes?
<NixOS_GitHub> [nixpkgs] domenkozar pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/f10dfd692f51400e9661c461b49b36ac83f0228c
<NixOS_GitHub> nixpkgs/master f10dfd6 Domen Kožar: haskellPackages.mysql: fix #19593
<LnL> what do you mean?
<LnL> nix-env -qa?
c0bw3b has left #nixos []
<LnL> nix-env -f '<nixpkgs>' -qaP \* will show the attributes and names of top-level packages
dgn has quit [(Quit: dgn)]
dgn has joined #nixos
<john_due> LnL: thanks, the 'P' does the trick
alx741 has quit [(Ping timeout: 240 seconds)]
devhell has quit [(Quit: WeeChat 1.6)]
<LnL> but most of the time I just use nix-repl and <tab><tab>
msd has quit [(Remote host closed the connection)]
msd has joined #nixos
FRidh has joined #nixos
Unode has joined #nixos
<FRidh> srhb: you mixed override with overrideDerivation / overrideAttrs
msd has quit [(Ping timeout: 246 seconds)]
<Unode> hi all. Could someone familiar with the internals of nix explain what exactly happens when nix-channel --update is run?
ckauhaus has quit [(Quit: Leaving.)]
mbrgm has quit [(Ping timeout: 245 seconds)]
msd has joined #nixos
<Unode> I have a setup at work running on a shared drive (via NFS) and "nix-channel --update" seems to have stalled. i.e. I don't see any activity but the process is still "running".
systemfault has joined #nixos
mbrgm has joined #nixos
<ToxicFrog> So, I have a packageOverride in /etc/nixos/configuration.nix -- how do I use 'nix-build' to build a package with that override applied?
<gchristensen> mguentner: hah, yeah?
<msd> Is lspci available on NixOS?
<msd> If so, under which package?
<gchristensen> pciutils
<Wizek> Might anyone of you know why `nix-shell -I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz -p "haskellPackages.ghcWithPackages (p: [p.compose-ltr])" --run 'ghci'` fails with "Setup: Encountered missing dependencies: QuickCheck ==2.8.1, hspec ==2.2.0"?
<Wizek> AFAIA I'm not asking nix to build/run unit tests of compose-ltr, so why does it care about quickcheck and hspec?
<LnL> gchristensen: do you have any idea what ends up in the command-not-found db?
Sonarpulse-Work has quit [(Remote host closed the connection)]
eacameron has joined #nixos
<gchristensen> LnL: I don't, but I think you can find out in the channel scripts repo
pi3r has joined #nixos
<LnL> yeah just wondering, because that's basically the only reliable way to the package of a binary AFAIK
<gchristensen> yeah ... :)
stepcut has joined #nixos
guillaum2 has joined #nixos
<guillaum2> hi today.
pi3r has quit [(Client Quit)]
<gchristensen> hi today
<Unode> LnL: Some time ago I was looking for this info on hydra. I assume it's there somewhere since all packages are compiled/installed/tested there.
<Unode> I think you were the one pointing me to command-not-found :) . Had to run nix-channel --update since I didn't even had that info locally.
<LnL> Unode: all the hydra jobs are defined in the nixpkgs repo
zagy has joined #nixos
<LnL> right, I remember
<Unode> LnL: but not the binaries produced right?
<Unode> (binaries or otherwise)
eacameron has quit [(Ping timeout: 248 seconds)]
<LnL> no those end are built on hydra and then uploaded to the cache
<Unode> On that day I was actually looking for a command but every now and then I feel the need to look for other files. Specially headers (.h) and libs, which as far as I understand are not in the command-not-found db.
<guillaum2> I'm lost at packaging something. The tool depends on OpenEXR which contains, for example, and include such as /...nixStore/include/OpenEXR/half.h. Instead of incluing <OpenEXR/half.h>, the tool include "half.h" and change the include path to -I/usr/include/OpenEXR. And hence, it does not in my package. Is there a smart way to hande that (i.e. tells nix-shell to export /...store/include/OpenEXR as
<guillaum2> incluable path) or should I patch the software?
matthewbauer has joined #nixos
<guillaum2> (I just realise how much this sentence is complicated and not gramatically correct...)
endformationage has joined #nixos
<Unode> +/- a typo :)
rly has quit [(Ping timeout: 258 seconds)]
<LnL> guillaum2: NIX_CFLAGS_COMPILE = "-I${foo}/include/foo";
<LnL> I think that might help
<LnL> those will always be added, even if the build ignores/overwrites CFLAGS
rly has joined #nixos
matthewbauer has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] e-user opened pull request #21648: openldap: load configuration files from global sysconfdir /etc (master...bugfix/openldap) https://git.io/vM33z
<guillaum2> LnL: this is indeed doing the trick.
<guillaum2> LnL: thank you. Well, now I'm wondering how much tool are hacked together to make nix...
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
stepcut has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] domenkozar closed pull request #21645: nox: 0.0.4 -> 0.0.5 (master...update-nox) https://git.io/vM33H
<NixOS_GitHub> [nixpkgs] domenkozar pushed 2 new commits to master: https://github.com/NixOS/nixpkgs/compare/f10dfd692f51...795ce4fd6155
<NixOS_GitHub> nixpkgs/master 08fd548 Georges Dubus: nox: 0.0.4 -> 0.0.5
<NixOS_GitHub> nixpkgs/master 795ce4f Domen Kožar: Merge pull request #21645 from madjar/update-nox...
danielrf has joined #nixos
stepcut has joined #nixos
<LnL> the clang/gcc in the stdenv is a wrapper that looks at those NIX_* flags and adds those along with it's arguments
<gchristensen> anyone using the docker tooling? it is great and all, being able to pull images ... but then what?
eacameron has joined #nixos
<LnL> what do you mean?
bfrog_ is now known as bitginus
<gchristensen> well, like, how do I run them?
<LnL> ah right
<gchristensen> lol :YP
<LnL> docker load < result
<LnL> or something like that, don't remember exactly
bitginus is now known as bitgins
<gchristensen> oh, huh, and do this as like a ExecStartPre step or something?
stepcut has quit [(Ping timeout: 245 seconds)]
guillaum1 has quit [(Ping timeout: 245 seconds)]
john_due has quit [(Quit: This computer has gone to sleep)]
<LnL> guess you have to if you don't want to assume it already exists
<gchristensen> well you'd have to or if when it changes you won't get an updated image
<gchristensen> right?
<LnL> yeah that's all impure
* gchristensen feels gross
<LnL> unless you can just directly run an image tar archive somehow
<gchristensen> I don't think you can
yy has joined #nixos
<gchristensen> what the heck
Vorpal has quit [(Ping timeout: 248 seconds)]
georges-duperon has quit [(Ping timeout: 240 seconds)]
<gchristensen> near as I can tell this isn't actually useful
ixxie has joined #nixos
<LnL> I think you have to separate the build and service
<gchristensen> yeah that makes sense, and is fine
<gchristensen> but for example, I can't pull any images if they have a "/" in them, like ... basically all images: https://hub.docker.com/r/aespinosa/jenkins/
ryantrinkle has joined #nixos
<LnL> what
<LnL> what should be fixed
<LnL> oh perhaps not on 16.09
systemfault has quit [(Quit: Bye!)]
<gchristensen> I'm using master :|
Sonarpulse-Work has joined #nixos
<LnL> strange, I remember some issues about it that where closed IIRC
reinzelmann has quit [(Quit: Leaving)]
<guillaum2> (more question, because I'm usually tacking ten hours finding the answers when you can give it to me in 5s ;). What is the package for gcc? I tried gcc_wrapper, but I'm not sure, and I can't install it aside clang... It is weird. How to overload the default "gcc" package using inside a .nix?
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 3 new commits to master: https://github.com/NixOS/nixpkgs/compare/795ce4fd6155...71c1e2ffbf52
<NixOS_GitHub> nixpkgs/master b578bbb Michael Raskin: mysql55: 5.5.53 -> 5.5.54
<NixOS_GitHub> nixpkgs/master 8ec3b1f Michael Raskin: mysql55: 5.7.16 -> 5.7.17
<NixOS_GitHub> nixpkgs/master 71c1e2f Michael Raskin: irssi_otr: 1.0.1 -> 1.0.2
Vorpal has joined #nixos
<LnL> guillaum2: you can't "install" them in the same user profile
Vorpal has quit [(Changing host)]
Vorpal has joined #nixos
<LnL> is there a reason you want to install them instead of using a nix-shell
<guillaum2> LnL: I'm used to it ;) (I agree, that's not a reason)
<gchristensen> LnL: example error: "error: invalid character ‘/’ in name ‘library/debian-latest’"
<LnL> gchristensen: talking about "/", I found a bug in my etc module
<LnL> I'll push a fix in an hour or so
<guillaum2> LnL: If I want to compare a small program compiled with gcc and compiled with clang, I must launch two nix-shell... Ok. That's not what I'm used to, but it may do the job.
* gchristensen might just die
<gchristensen> this is terrible
<LnL> gchristensen: I know what the issue is and I can probably fix it once I get home
<gchristensen> omg
<gchristensen> I think the dockertools are just plain broken
<LnL> more problems?
<LnL> are they really in such a bad state?
guillaum1 has joined #nixos
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 3 new commits to release-16.09: https://git.io/vM3Cq
<NixOS_GitHub> nixpkgs/release-16.09 fd9d06d Michael Raskin: mysql55: 5.5.53 -> 5.5.54...
<NixOS_GitHub> nixpkgs/release-16.09 9899790 Michael Raskin: mysql55: 5.7.16 -> 5.7.17...
<NixOS_GitHub> nixpkgs/release-16.09 a256cf3 Michael Raskin: irssi_otr: 1.0.1 -> 1.0.2...
<LnL> gchristensen: I do have a regular docker image with nix
<gchristensen> even if I skip the "/" and just pull debian, ... I think hub.docker.com stopped supporting v1?
<LnL> so you can run nix-env -i in there to install stuff
matthewbauer has joined #nixos
<LnL> oh :(
<LnL> crap, we still use v1 at work
<LnL> that's going to be some fun soon
<LnL> depending on what you want to do that might be usefull
<ToxicFrog> Aha! I found the problem with bitlbee
<ToxicFrog> You need to override nativeBuildInputs rather than just buildInputs
<ToxicFrog> And then add --jabber=1 to the configure arguments or the tests will fail to build
<NixOS_GitHub> [nixpkgs] dbalan opened pull request #21650: ldns 1.6.17 -> 1.7.0 (master...ldns-1.7.0) https://git.io/vM3Cl
<flxw> Hi, I'm trying to "browse" around in the attributes of e.g. nixos.modules.programs.zsh, using nix-repl '<nixos>'. I'm sure this is wrong, as nothing shows up. What am I doing wrong? :)
<gchristensen> yeah ok this just isn't going to work, I'm going to skip this and just going to do `docker pull` in my systemd unit.
<LnL> flxw: '<nixpkgs/nixos>'
<LnL> flxw: nixos-option is also useful
<flxw> LnL: aah, thank you.
<guillaum2> are the different package build / install / configure step sandboxed differently using nix-build ?
ertes has quit [(Ping timeout: 248 seconds)]
<NixOS_GitHub> [nixpkgs] joachifm pushed 4 new commits to master: https://git.io/vM3WI
<NixOS_GitHub> nixpkgs/master 1b5f939 Michael Alan Dorman: elpa-packages: 2017-01-03
<NixOS_GitHub> nixpkgs/master 29472c6 Michael Alan Dorman: melpa-stable-packages: 2017-01-03
<NixOS_GitHub> nixpkgs/master 080926b Michael Alan Dorman: melpa-packages: 2017-01-03
jgertm_ has quit [(Ping timeout: 246 seconds)]
ublubu has quit [(Ping timeout: 258 seconds)]
alx741 has joined #nixos
<guillaum2> haha, I hit the homeless-shelter stuff... that's fun... Well... I spent 30 minutes grepping my package to find where does that crap comes from ;) That's funny...
nanobapt has joined #nixos
yy has quit [(Quit: Leaving)]
danharaj has joined #nixos
rly has quit [(Ping timeout: 245 seconds)]
qpqp has joined #nixos
systemfault has joined #nixos
john_due has joined #nixos
goibhniu has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] edanaher opened pull request #21652: neovim: Inherit meta into neovim-configured (master...fix-neovim-plugins) https://github.com/NixOS/nixpkgs/pull/21652
rly has joined #nixos
ublubu has joined #nixos
<copumpkin> niksnut: how does store output communication work nowadays after all the store refactoring? I'm considering setting up a minimal linux VM in the background of my Mac with a nix daemon to build things, and I'm curious whether that VM will expect to download its own things (i.e., does it need internet access) or if the host will send it its inputs and get the outputs back from it after it finishes building
georges-duperon has joined #nixos
edapa has joined #nixos
edapa has left #nixos []
edapa has joined #nixos
<gchristensen> huh ... the vbox VM seems to come with the networking disabled
Lowl3v3l has quit [(Quit: Leaving)]
systemfault has quit [(Quit: Bye!)]
<gchristensen> and the configuration.nix is read-only
<pikajude> can I use vim_configurable's options with neovim somehow?
<LnL> guillaum2: yeah luckily you only get confused about that once, after that you know it's trying to do stuff in $HOME
danielrf has quit [(Read error: Connection reset by peer)]
<LnL> gchristensen: the nixops vm?/
<NixOS_GitHub> [nixpkgs] volth opened pull request #21653: xorg.xserver: configure --with-xkb-path= (master...with-xkb-path) https://github.com/NixOS/nixpkgs/pull/21653
<gchristensen> LnL: nixos from nixos.org/nixos -> Get NixOS
<LnL> oh, not sure if that's intended
FPtje has quit [(Remote host closed the connection)]
<pikajude> oh, okay
<pikajude> so vimrcConfig -> configure
<pikajude> why do you use buildEnv for that?
<LnL> dunno, those are my old dotfiles
<pikajude> okay
<LnL> I use my nix-darwin project now
<LnL> in case you have not seen it yet
<pikajude> neat
<pikajude> looks like this would be helpful to use with darwinix
<LnL> sure, the nixpkgs source is decoupled so you could use your fork instead
<pikajude> wow, very impressive actually
<LnL> :D
<pikajude> it's like nixos-* but with darwin-* instead
<LnL> yes exactly
<pikajude> i want to try this out today
<pikajude> i've been looking for a way to make service management on darwin less obnoxious
<LnL> oh you have to checkout my launchd module then
<LnL> contains the full manpage of launchd
<pikajude> right
<pikajude> yeah
<pikajude> i'm guessing i'll have to write my own launchd version of redis
<pikajude> but it shouldn't be hard with the docs there
<pikajude> wow, and dock settings too
<NixOS_GitHub> [nixpkgs] garbas closed pull request #21652: neovim: Inherit meta into neovim-configured (master...fix-neovim-plugins) https://github.com/NixOS/nixpkgs/pull/21652
<LnL> yes, there's very little implementation at the moment but everything should work very similar to nixos
<LnL> feel free to open issues/contribute
<pikajude> nice
<pikajude> will do
<pikajude> i'll fork this
<LnL> I just found a bug with environment.etc for nested files, I'll fix that in a bit
matthewbauer has quit [(Ping timeout: 248 seconds)]
dsieczko has quit [(Ping timeout: 246 seconds)]
<pikajude> how do I set the package to use for nix?
<pikajude> is it the same as in a nixos config?
<LnL> it uses the default profile at the moment for nix/cacert
<pikajude> okay, well, i don't think 1.11 will function on my system
<LnL> since that's where it's installed by default, but you can override the profile
teknico has left #nixos []
<LnL> so I don't refer to the nix package from nixpkgs directly
<pikajude> oh, it was just pulling it in as a dependency because of nix-repl in the example config
<pikajude> my fault
nschoe has quit [(Ping timeout: 248 seconds)]
ambro718 has joined #nixos
zagy has quit [(Quit: Leaving.)]
<pikajude> LnL: with an out-of-the-box config, I get error: while setting up the build environment: can't map '/bin/sh' to '/nix/store/nva88kpcphqkd2lgz0npx5f3r69a3gw9-bash-4.3-p46/bin/bash': mismatched impure paths not supported on Darwin
<pikajude> and there is actually specifically a part in the nix module that sets /bin/sh=${sh} in the build-sandbox-paths option
<pikajude> how can that possibly ever work?
<LnL> I've never seen that before
<pikajude> mismatched impure paths have never worked on darwin
<LnL> do you have a working sandbox or something
<pikajude> do you have the sandbox enabled on your box?
<pikajude> yeah i do
<LnL> no it's still broken
<pikajude> okay
<pikajude> just checking. i'll take that out then
<LnL> but I don't really understand what it's saying
<FRidh> substituting a path in a binary should be ok as long as the paths have the same length, right?
<pikajude> no. that code uses bind mounts in linux to map paths to each other
<pikajude> bind mounts don't exist on darwin
Baughn has quit [(Quit: ZNC 1.6.2+deb1 - http://znc.in)]
<NixOS_GitHub> [nixpkgs] crclark opened pull request #21654: nix-prefetch-git: remove call to nonexistent print_metadata function (master...connor/print_metadata) https://git.io/vM3R8
<pikajude> any occurrence of foo=bar in build-sandbox-paths will not work unless foo is identical to bar
<pikajude> which would make the mapping step useless anyway
Baughn has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #21592: cjdns service: optional extraHosts (master...cjdns-optional-extraHosts) https://git.io/vMmth
<FRidh> e.g. substituteInPlace $out/${pythonFull.sitePackages}/_tkinter* --replace "${pythonFull}" "${python}"
<NixOS_GitHub> [nixpkgs] joachifm pushed 3 new commits to master: https://github.com/NixOS/nixpkgs/compare/d4b960550bc8...9e0dc9fa7c60
<NixOS_GitHub> nixpkgs/master 237af18 Joachim Fasting: Revert "nixos/cjdns: do not ammend /etc/hosts"...
<NixOS_GitHub> nixpkgs/master bdb9cd1 Tomas Hlavaty: cjdns service: optionally add cjdns hosts to networking.extraHosts...
<NixOS_GitHub> nixpkgs/master 9e0dc9f Joachim F: Merge pull request #21592 from joachifm/cjdns-optional-extraHosts...
<pikajude> FRidh: this isn't the same as that
<gchristensen> FRidh: I _think_ that is okay
<gchristensen> pikajude: I think his question is unrelated
<LnL> pikajude: I only use stdenv.shell AFAIK
<gchristensen> niksnut, domenkozar: have y'all seen my PR to nixos-homepage / any thoughts?
<FRidh> my question is indeed unrelated
<john_due> How do I use the video driver I just compiled? services.xserver.videoDrivers = [ ? ]; ?
<LnL> pikajude: oh I think it's nix.conf
nschoe has joined #nixos
<FRidh> unfortunately I get "ELF file ABI version invalid" but I guess it makes sense here since one is compiled with support for Tk and the other is not.
<NixOS_GitHub> [nixpkgs] edanaher opened pull request #21655: pidgin-osd: 0.1.0 -> 0.2.0 (master...pidgin-osd) https://github.com/NixOS/nixpkgs/pull/21655
stepcut has joined #nixos
dgn has left #nixos []
rly has quit [(Ping timeout: 248 seconds)]
<pikajude> FRidh: whoops, sorry lol
<pikajude> i thought you were talking to me
matthewbauer has joined #nixos
oida has quit [(Ping timeout: 272 seconds)]
<msd> Has anyone setup OVMF on a NixOS system with nixops before?
matthewbauer has quit [(Remote host closed the connection)]
matthewb` has joined #nixos
* ToxicFrog tries to figure out how to get purple-hangouts-hg working
<ToxicFrog> It *builds* fine, but the install script plops it into $out/lib/pidgin/
<ToxicFrog> Which of course libpurple doesn't look in for plugins because it has no idea that dir exists
danielrf has joined #nixos
amarsman has quit [(Quit: amarsman)]
<NixOS_GitHub> [nixpkgs] nbp pushed 1 new commit to master: https://git.io/vM3EG
<NixOS_GitHub> nixpkgs/master 3956435 Chris Martin: eval-config.nix: configuration->configuration.nix...
guillaum1 has quit [(Ping timeout: 248 seconds)]
guillaum1 has joined #nixos
dsieczko has joined #nixos
sellout- has joined #nixos
mudri` has quit [(Ping timeout: 258 seconds)]
ambro718 has quit [(Ping timeout: 248 seconds)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/567c1a360f1f3b531847432e734e6f7e6eec41a5
<NixOS_GitHub> nixpkgs/master 567c1a3 Michael Raskin: openfire: mark as broken; its unfriendlyness towards read-only installation directory and friendliness towards manual installation by just unpacking only grow with time
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to release-16.09: https://git.io/vM3uh
<NixOS_GitHub> nixpkgs/release-16.09 873eb9f Michael Raskin: openfire: mark as broken; its unfriendlyness towards read-only installation directory and friendliness towards manual installation by just unpacking only grow with time...
john_doe1 has joined #nixos
john_due has quit [(Ping timeout: 258 seconds)]
guillaum1 has quit [(Ping timeout: 256 seconds)]
ryanartecona has joined #nixos
john_doe1 is now known as john_due
amarsman has joined #nixos
nschoe has quit [(Quit: Program. Terminated.)]
matthewb` has quit [(Remote host closed the connection)]
derjohn_mob has quit [(Ping timeout: 256 seconds)]
matthewb` has joined #nixos
matthewb` has quit [(Client Quit)]
matthewbauer has joined #nixos
tvon has joined #nixos
<ToxicFrog> Aha: systemd.services.bitlbee.environment.PURPLE_PLUGIN_PATH = "${pkgs.purple-hangouts}/lib/pidgin/";
<ToxicFrog> I should probably clean these changes up and submit them as patches.
nanobapt has quit [(Ping timeout: 245 seconds)]
mudri` has joined #nixos
<gchristensen> please :)
<NixOS_GitHub> [nixpkgs] zimbatm opened pull request #21656: packer: 0.10.1 -> 0.12.1 (master...packer-0.12.1) https://github.com/NixOS/nixpkgs/pull/21656
edapa has quit [(Ping timeout: 248 seconds)]
alx741_ has joined #nixos
alx741_ has quit [(Client Quit)]
alx741_ has joined #nixos
alx741_ has quit [(Client Quit)]
alx741 has quit [(Ping timeout: 248 seconds)]
<FRidh> ugh shell scripts. What am I doing wrong here? new_rpath=$(sed "s/${py}/${python}/g" <<< "$old_rpath" ) I have an rpath and would like to replace one of the store paths (${py}) with another (${python})
msd has quit [()]
<gchristensen> FRidh: ${py} and ${python} probably have slashes in them
<gchristensen> so sed "s#${py}#${python}#g" should do it (this assumes they don't have #'s in them)
johnw has joined #nixos
<FRidh> ok, thank you. So # and @ are for when different characters are present?
takle has quit [(Remote host closed the connection)]
mog has quit [(Ping timeout: 248 seconds)]
<LnL> FRidh: you can use any character as delimiter
<LnL> or atleast symbols like / @ , | ...
<habibi_> FRidh: if you don't want to escape the variables that are expanded inside the sed command, you can change '/' for a character you're sure won't be there. Otherwise, if you use '/' for example, you will have to make sure to change every '/' in the $py and $python variables to '\/' so sed doesn't misunderstand.
<ToxicFrog> gchristensen: I'll see if I can get to it sometime in the next week or two
<ToxicFrog> (but if not I can definitely do it in february, since all my partners will be away *and will have taken the toddler with them*)
<gchristensen> :D
<FRidh> gchristensen: LnL: habibi_: Thanks, that's clear now. Thus far pythonPackages.tkinter depended on two python interpreters. Now only one, and it *seems* to work.
<gchristensen> nice :D
<ToxicFrog> Looks like I have a bunch of small improvements to bitlbee (including a bitlbee version built against libpurple), exim, syncthing, zfs
<ToxicFrog> And bugs to report against services.locate and security.pki.certificateFiles
guillaum2 has quit [(Ping timeout: 248 seconds)]
<ToxicFrog> (specifically, security.pki.certificateFiles = [ "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" ] should probably be the default, rather than just leaving you with no CA roots on a newly installed system)
<MarcWeber> Has anybody written a derivation for mod_pagespeed (from google) yet?
ixxie has quit [(Ping timeout: 245 seconds)]
jgertm_ has joined #nixos
john_due has quit [(Quit: This computer has gone to sleep)]
nmattia has joined #nixos
wayne has quit [(Changing host)]
wayne has joined #nixos
josePhoenix has joined #nixos
ncode has joined #nixos
mudri` is now known as mudri
relrod_ has joined #nixos
relrod_ has quit [(Changing host)]
relrod_ has joined #nixos
john_due has joined #nixos
<pikajude> wow, so nix still has the capability to garbage collect only *some* outputs of a derivation
<pikajude> thus making the package unbuildable
[0__0] has joined #nixos
seagreen has joined #nixos
shanemikel has joined #nixos
<gchristensen> pikajude: what if you build it with `--check`
relrod_ is now known as relrod
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/e276f590200e03b6e733c4e680ba2d835e37cd56
<NixOS_GitHub> nixpkgs/master e276f59 Frederik Rietdijk: pythonPackages.tkinter: patch rpath to use only one interpreter...
zeus_ has joined #nixos
<pikajude> gchristensen: no idea
<pikajude> worth a shot
cpennington has quit [(Ping timeout: 248 seconds)]
<niksnut> pikajude: why would the package be unbuildable?
takle has joined #nixos
<niksnut> if sandbox builds are enabled, it will rebuild all outputs in the sandbox and then copy only the missing ones
<niksnut> if sandbox builds are disabled, it will try hash rewriting
habibi_ has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
zraexy has joined #nixos
takle has quit [(Ping timeout: 248 seconds)]
<pikajude> no it won't
<pikajude> wait, really
<NixOS_GitHub> [nixpkgs] FRidh closed pull request #21643: Python tix module (staging...python-tix) https://git.io/vM3op
<pikajude> oh, no. the darwin sandbox doesn't use bind mounts
<pikajude> so it'll just fail when it wants to mkdir an existing directory
<NixOS_GitHub> [nixpkgs] FRidh pushed 4 new commits to staging: https://github.com/NixOS/nixpkgs/compare/27660cfdc01c...a3018650a3da
<NixOS_GitHub> nixpkgs/staging 87ef971 Symphorien Gibol: tk: add private headers to /include...
<NixOS_GitHub> nixpkgs/staging 3f499d3 Symphorien Gibol: tix: init at 8.4.1
<NixOS_GitHub> nixpkgs/staging a6e3d71 Symphorien Gibol: python: support the tkinter.tix module
<pikajude> no idea what it tries to do without the sandbox on darwin
<pikajude> i'll try that next
<LnL> pikajude: FYI I think you might be the only person using a sandbox on darwin
<LnL> (except for running nix-build inside sandbox-exec)
* gchristensen wishes he could be sandboxed on darwin :(
<pikajude> i probably am, aren't i
<pikajude> lol, yeah, it works fine with sandbox disabled
<LnL> I would if it worked :)
michaelpj has quit [(Read error: Connection reset by peer)]
<pikajude> i guess that makes sense
<socksy> hey, does anyone have any experience using rust on nixos? Trying to play around with it and came up with a linker error
<niksnut> pikajude: ah good point, forgot about darwin
takle has joined #nixos
<LnL> copumpkin was looking at it, but he's been pretty busy. no idea what the status of that is
<pikajude> someone just patch bind mounts into darwin and then everything will be fine
Shou has quit [(Quit: 🛏)]
takle has quit [(Ping timeout: 245 seconds)]
mog has joined #nixos
takle has joined #nixos
ashkitten has joined #nixos
hoodoo_wrk has joined #nixos
oida has joined #nixos
<hoodoo_wrk> Hi nixos people, I have a question regarding running a package I've installed in my local env.
cpennington has joined #nixos
<hoodoo_wrk> I've installed nixos recently and I'm impressed with how easy it was. I follow the unstable channel and I've managed to install awesome wm 4 using nixpkg master to my local env. How do I go about adding it as my wm of choice?
<hoodoo_wrk> I currently think of (ab)using services.xserver.displayManager.slim.extraConfig adding awesome from my local env as an option and then making it default.
<hoodoo_wrk> Is that a good thing to do? I'm looking for a nixos way solution, but, on the other hand, I could go with a dirty hack and wait for the next release where it's going to be the default.
cpennington has quit [(Remote host closed the connection)]
takle has quit [(Ping timeout: 245 seconds)]
AllanEsp1nosa has joined #nixos
ryanartecona has quit [(Quit: ryanartecona)]
john_due has quit [(Ping timeout: 272 seconds)]
ThatDocsLady has quit [(Ping timeout: 245 seconds)]
shanemikel has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
wak-work has quit [(Remote host closed the connection)]
john_due has joined #nixos
<LnL> you need the package from master?
<hoodoo_wrk> Yes I do. In fact, I have it installed, but it's not system wide, it's in my profile. fwiw it seems like it works
<FRidh> hoodoo_wrk: services.xserver.windowManager.awesome.enable = true; ?
<hoodoo_wrk> I'd like to run the binary but I really don't want to make a lot of dirty hacks.
<hoodoo_wrk> FRidh, right, I have this line, but it would run the awesome from unstable channel - 3.5.9
wak-work has joined #nixos
<LnL> and you can override the package with the one from master
<hoodoo_wrk> That's good to hear, how do I go about it?
takle has joined #nixos
<LnL> the packageOverrides example is what you want
<LnL> but instead of pkgs.foo you can use: (import /path/to/nixpkgs-master {}).foo
<FRidh> and possibly in combination with fetchTarball to grab awesome from nixpkgs master
shanemikel has joined #nixos
guillaum1 has joined #nixos
<LnL> (or a tarball url if you don't want a local checkout)
bitgins has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] FRidh force-pushed python-wip from 0d65684 to 8fa7286: https://git.io/vzaOS
<NixOS_GitHub> nixpkgs/python-wip 84ab902 Frederik Rietdijk: pythonPackages.sqlalchemy_imageattach: fix dependency Wand...
<NixOS_GitHub> nixpkgs/python-wip 8fa7286 Frederik Rietdijk: pythonPackages.pycrypto: use pycryptodome...
<hoodoo_wrk> Thanks, I'll look into that and poke around. I thought it was something like an interface to build options. If it works it's gonna be amazing, a good way to pull in newer packages while keeping the configuration.nix sane.
cransom_ is now known as cransom
<NixOS_GitHub> [nixpkgs] FRidh force-pushed python-wip from 8fa7286 to 51b79c3: https://git.io/vzaOS
<NixOS_GitHub> nixpkgs/python-wip 51b79c3 Frederik Rietdijk: pythonPackages.pycrypto: use pycryptodome...
cjhowe has joined #nixos
<hoodoo_wrk> I could even checkout master as a part of installation process.
Wizek_ has quit [(Ping timeout: 245 seconds)]
Wizek has quit [(Ping timeout: 245 seconds)]
<LnL> import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/master.tar.gz) {}
<LnL> but I would not really recommend that
sellout- has quit [(Quit: Leaving.)]
Wizek has joined #nixos
<hoodoo_wrk> Oh.
<hoodoo_wrk> I'll fallback to fiddling with slim options then. Looks like I can insert arbitrary lines there.
<hoodoo_wrk> Does not look like best practice but I'd stick with that for several months until the next release.
c_ has joined #nixos
c_ is now known as Guest15443
cpennington has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 2 new commits to master: https://github.com/NixOS/nixpkgs/compare/e276f590200e...4f957a9fdb5a
<NixOS_GitHub> nixpkgs/master 86a251e Franz Pletz: libbrotli: 20160120 -> 1.0
<NixOS_GitHub> nixpkgs/master 4f957a9 Franz Pletz: pythonPackages.sqlalchemy_imageattach: fix evaluation...
takle has quit [(Read error: Connection reset by peer)]
Guest15443 has quit [(Client Quit)]
takle has joined #nixos
c0bw3b has joined #nixos
sellout- has joined #nixos
cpennington has quit [(Ping timeout: 258 seconds)]
symphorien has joined #nixos
shanemikel has quit [(Quit: My MacBook Air has gone to sleep. ZZZzzz…)]
john_due has quit [(Quit: Leaving)]
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vM31H
<NixOS_GitHub> nixpkgs/master 0d5a530 Jörg Thalheim: iproute: remove broken fan patch
<NixOS_GitHub> nixpkgs/master 0779fdb Jörg Thalheim: Merge pull request #21561 from Mic92/iproute...
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #21561: iproute: remove broken fan patch (master...iproute) https://github.com/NixOS/nixpkgs/pull/21561
hoodoo_wrk has quit [(Ping timeout: 260 seconds)]
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
amarsman has quit [(Quit: amarsman)]
cjhowe has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
amarsman has joined #nixos
<guillaum1> I do really have the feeling that I'm bad at finding documentation. How do I override a package compiler ? Or how do I start a nix-shell with a different compiler ?
cpennington has joined #nixos
tvon has quit [(Quit: Peace out, y'all!)]
zeus_ has quit [(Ping timeout: 258 seconds)]
<gchristensen> guillaum1: check these search results out: https://search.nix.gsc.io/?q=overridecc&i=fosho&files=&repos=
<NixOS_GitHub> [nixpkgs] fpletz closed pull request #21625: smokeping: Allow customization of cgiurl and imgurl (master...smokeping) https://git.io/vM3M3
shanemikel has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 3 new commits to master: https://github.com/NixOS/nixpkgs/compare/0779fdb3e48c...cdbffaa86eb1
<NixOS_GitHub> nixpkgs/master b5703ea Tristan Helmich: smokeping: Allow full override of imgurl + cgiurl
<NixOS_GitHub> nixpkgs/master f808502 Tristan Helmich: smokeping: cleanup (option ordering)
<NixOS_GitHub> nixpkgs/master cdbffaa Franz Pletz: Merge pull request #21625 from mayflower/smokeping...
ryanartecona has joined #nixos
<guillaum1> gchristensen: I'm playing with overidecc since one hour without success, do you understand that error ? "cannot auto-call a function that has an argument without a default value (‘stdenv’)" on a call "overrideCC stdenv gcc6"
<gchristensen> guillaum1: searching hound for "overrideCC stdenv gcc6" I found: https://github.com/NixOS/hydra/blob/master/release.nix#L127 maybe this example can help?
<guillaum1> ;( that line is exactly what I have in my package. So there may be something else involved ;(
<gchristensen> can you pastebin your code?
<LnL> guillaum1: yes and how are you building it?
nil has quit [(Disconnected by services)]
<LnL> that error looks like you're trying to nix-build a file with { stdenv, .. }: ...
<guillaum1> LnL: that's exactly that ;)
nil has joined #nixos
<LnL> guillaum1: nix-build -E 'with import <nixpkgs> {}; callPackage ./foo.nix {}'
* gchristensen can never remember that incantation
nil has quit [(Disconnected by services)]
<LnL> gchristensen: use my wrapper: nix b ./default.nix
<gchristensen> :o
<LnL> if you pass it a file instead of a dir it will callPackage
ntc has joined #nixos
<LnL> or it's supposed to atleast
cjhowe has joined #nixos
<guillaum1> LnL: here is the current code: http://lpaste.net/350881
samvher has joined #nixos
<guillaum1> I added stdenv on top because it was complaining about no stdenv variable when I added the line stdenv = overrideCC stdenv gcc6;
<gchristensen> domenkozar: are you going to be able to make that signed commit? I want it to verify: (1) you still have control of the key, (2) they way I know you are you translates in to control of that key
<LnL> either remove all the function arguments at the top and use let inherit (pkgs) ...
<LnL> to bring them into scope
<LnL> or use the callPackage expression I mentioned earlier
<domenkozar> gchristensen: will do it tomorrow
<gchristensen> domenkozar: sounds good, thank you :)
<domenkozar> last time I tried git barfed with some garbage
<domenkozar> gchristensen: just got your xmas present!
<gchristensen> I can help if you need help
<gchristensen> oh, excellent!
<gchristensen> :D
<domenkozar> :D
<domenkozar> it's hugee
<guillaum1> LnL: Damned, I replaced all the stdenv / overrideCC / gcc6 by "pkgs.XXX" and it works
<domenkozar> I'll get a new laptop soon so perfect
<LnL> guillaum1: that also works
<gchristensen> domenkozar: haha, yeah, I got it to be small enough to fit on my laptop, but big enough that the center is big enough to circle the apple logo
<LnL> yeah it looked pretty great on the photo
<guillaum1> LnL: I guess I need to understand what I'm doing with the nix language... Well, during the time it DL gcc6, I'll have time to read documentation. Thank you.
cjhowe has quit [(Ping timeout: 248 seconds)]
<LnL> guillaum1: look at all-packages.nix you'll see that everything gets imported there using that callPackage function
<guillaum1> Thank you.
cjhowe has joined #nixos
<fpletz> Mic92: should we revert the iproute fan commit for now?
oida has quit [(Ping timeout: 248 seconds)]
djvdorp has quit [(Ping timeout: 260 seconds)]
<gchristensen> oh shit, look out -- librsvg now requires rust to build
john_due has joined #nixos
endformationage has quit [(Quit: WeeChat 1.6)]
<gchristensen> "Apologies in advance to distros who will have to adjust their build systems for Rust - it's like taking a one-time vaccine; you'll be better off in the end for it."
pstn has joined #nixos
<LnL> lol
<fpletz> at least we do have rust support but it takes ages to build :/
zeus_ has joined #nixos
john_due has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] schneefux opened pull request #21657: hugo: 0.17 -> 0.18.1 (master...pkg.hugo) https://github.com/NixOS/nixpkgs/pull/21657
<NixOS_GitHub> [nixpkgs] domenkozar pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/05fe17ea3c6cdf395a5fde6787a8faad46bd2aa7
<NixOS_GitHub> nixpkgs/master 05fe17e Domen Kožar: libvncserver: enable libgcrypt...
<gchristensen> domenkozar: did you see the directions I sent rob?
Wizek has quit [(Ping timeout: 256 seconds)]
derjohn_mob has joined #nixos
<NixOS_GitHub> [nixpkgs] bjornfor pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/26dce1924e324756964c5739c63c2bb7961a8fac
<NixOS_GitHub> nixpkgs/master 26dce19 Bjørn Forsman: kpcli: 3.0 -> 3.1
<NixOS_GitHub> [nixpkgs] acowley opened pull request #21658: mu: allow gtk-free builds (master...mu-no-mug) https://github.com/NixOS/nixpkgs/pull/21658
<Mic92> fpletz: mhm. the package should not build as well.
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/08d1f28818cd4518f96f838bd0d99df9d0b8c9e9
<NixOS_GitHub> nixpkgs/master 08d1f28 Franz Pletz: Revert "iproute: remove broken fan patch"...
<fpletz> Mic92: sorry, reverted for now, it's a hard evaluation error unforunately
<fpletz> travis is broken for all pull requests due to this and probably one or two more
<Mic92> fpletz: sure
<Mic92> fpletz: But I mean fanutils should be broken at the moment, right?
<Mic92> even with the reverted commit
<fpletz> we should probably wait for cstrahan's feedback, but I'm in favor of removing fan support if nobody is really using or willing to maintain it
<fpletz> Mic92: correct
<Mic92> fanutils sounds like a crazy idea on its own.
<Mic92> companies like google/facebook switched to ipv6 internally for that reason.
Wizek has joined #nixos
<cstrahan> Feel free to remove it for now - I'll push an update later.
<Mic92> Maybe mark as broken is sufficient too.
<cstrahan> Yeah, IPv6 would be ideal... but we don't live in an ideal world :)
<fpletz> cstrahan: thanks! then I propose we keep it in the current state or mark it as broken instead of removing it
samvher has quit [(Ping timeout: 256 seconds)]
auntie has joined #nixos
<auntie> I'm trying to install a python library that uses ctypes.util.find_library() to import a C shared library...
<auntie> what's the best way to work around this? I would write a patch and replace the find_library() call, but that seems like a hack
samvher has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 opened pull request #21659: bash-4.3-p46 -> bash-4.3-p48 (master...bash-4.3-p48) https://git.io/vM3HI
ambro718 has joined #nixos
djvdorp has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/vM3HR
<NixOS_GitHub> nixpkgs/master 48a5a47 Franz Pletz: pythonPackages.configshell_fb: disable failing tests on python3
guillaum2 has joined #nixos
<fpletz> auntie: does setting LD_LIBRARY_PATH work?
guillaum2 has quit [(Read error: No route to host)]
<auntie> mm, LD_LIBRARY_PATH doesn't seem helpful since it's a python library, not an application
<auntie> anyway, I ended up using sed. I see a few other packages that do the same thing xD
<fpletz> ah, I see
oida has joined #nixos
Itkovian has joined #nixos
hiratara has quit [(Ping timeout: 245 seconds)]
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/000fb9be33528f867e2355ddedde0836ba7f7a3a
<NixOS_GitHub> nixpkgs/master 000fb9b Franz Pletz: pythonPackages.pudb: 2013.3.6 -> 2016.2, disable tests on python 3
<fpletz> so many broken tests for python packages on python3, it's a minefield x_x
MichaelRaskin has joined #nixos
samvher has quit [(Ping timeout: 248 seconds)]
cjhowe has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
matthewbauer has quit [(Ping timeout: 256 seconds)]
Wizek_ has joined #nixos
<guillaum1> auntie: as far as I know, find_library uses LD_LIBRARY_PATH.
cjhowe has joined #nixos
hiratara has joined #nixos
bennofs has quit [(Ping timeout: 240 seconds)]
shanemikel has quit [(Read error: Connection reset by peer)]
oida has quit [(Ping timeout: 272 seconds)]
cjhowe has quit [(Ping timeout: 245 seconds)]
matthewbauer has joined #nixos
cpennington has quit [(Remote host closed the connection)]
<lewo> I booted a vm built with nixos-build-vms. I'm trying to to do a nixos-rebuild but it fails because root channels seem to not be correctly initialized. The errors I get: http://pastebin.com/yEAUCwZU
rly has joined #nixos
<lewo> How could I initialize the root profile?
jgertm_ has quit [(Ping timeout: 246 seconds)]
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<FRidh> auntie: the recommended method is indeed to patch the call and pass a path instead
Sonarpulse-Work has quit [(Remote host closed the connection)]
<gchristensen> MichaelRaskin: you've done such amazing work today! thank you!
<FRidh> fpletz: unfortunately that's indeed the case. In some cases its upstream but most of the time we don't run the test suite correctly. It would help a lot if there would be a bit more standardisation in Python packaging. And then there's also tests that require network or $HOME that fail.
c0bw3b has left #nixos []
<FRidh> Last time I checked 130 out of 6000 packages failed. These 6000 is the total for 2.7 and 3.5.
<fpletz> FRidh: i went too deep into the rabbit hole because mitmproxy is python3 only and has many dependencies… I'm trying to fix some packages but most were probably broken before and disabling the tests feels just wrong :)
<fpletz> FRidh: I also had some that fail in bootstrapped_pip due to the test_suite being None instead of a string
<fpletz> FRidh: do you have "standard" solutions for problems like this or those you mentioned?
<NixOS_GitHub> [nixpkgs] vcunat pushed 1 new commit to staging: https://github.com/NixOS/nixpkgs/commit/ea7b252c9ae0117b8f150950d730a7445d3f5e2d
<NixOS_GitHub> nixpkgs/staging ea7b252 Vladimír Čunát: Merge branch 'master' into staging
<NixOS_GitHub> [nixpkgs] NeQuissimus closed pull request #21660: atom: 1.12.7 -> 1.12.8 (master...atom_1_12_8) https://github.com/NixOS/nixpkgs/pull/21660
mkoenig has quit [(Read error: Connection reset by peer)]
nanobapt has joined #nixos
<FRidh> fpletz: For certain problems, yes. I should maybe document such common issues. This test_suite issue you mentioned I haven't encountered before. It's really annoying that it is, like you said, such a minefield.
rly has quit [(Ping timeout: 248 seconds)]
mkoenig has joined #nixos
hiratara has quit [(Quit: ZNC - http://znc.in)]
hiratara has joined #nixos
FRidh has quit [(Remote host closed the connection)]
nanobapt has quit [(Ping timeout: 272 seconds)]
georges-duperon has quit [(Ping timeout: 240 seconds)]
benzrf has joined #nixos
stepcut has quit [(Remote host closed the connection)]
<benzrf> how often do the python packages expressions get updated?!
<benzrf> i may have to do a global install or venv to use a package i wanna try
<nhooyr> trying to build fish shell from master. package looks like https://gist.github.com/98043c4c24e360a268700b122f780972 but I am getting https://gist.github.com/5429d18d6bd12d06ca2a459a602fbbcc
stepcut has joined #nixos
john_due has joined #nixos
stepcut has quit [(Ping timeout: 272 seconds)]
ryanartecona has quit [(Quit: ryanartecona)]
Sonarpulse-Work has joined #nixos
ebzzry has joined #nixos
dsieczko has quit [(Ping timeout: 258 seconds)]
NeQuissimus has quit [(Ping timeout: 258 seconds)]
NeQuissimus has joined #nixos
<gchristensen> benzrf: it is by done hand so as needed :)
<gchristensen> fuck
<gchristensen> LnL: do you have https://github.com/NixOS/nixpkgs/issues/21642 still open? (please don't refresh it.)
<gchristensen> it is the roundup
<LnL> clicking on the link refreshed it I think :(
<LnL> why?
<gchristensen> ack
<gchristensen> I accidentally unchecked a bunch of them :( I think the github issue thing isn't going to scale very well to multiple contributors
<gchristensen> I think I got it back
john_due has quit [(Quit: Leaving)]
ertes has joined #nixos
<NixOS_GitHub> [nixpkgs] dezgeg opened pull request #21661: coreutils: Build with xattr support (master...coreutils-attr) https://github.com/NixOS/nixpkgs/pull/21661
<MichaelRaskin> gchristensen: I wanted to do a couple of quick updates and call it my two cents, but Gentoo had too many ancient issues recycled
sigmundv has joined #nixos
AllanEsp1nosa has quit [(Ping timeout: 256 seconds)]
<gchristensen> MichaelRaskin: hehe yeah, I understand. I find it helpful to have some of them come back from the dead since we didn't have fabulous coverage for however long
<MichaelRaskin> Wouldn't it be better then to just raise monitor.nixos.org back from dead and apply all the updates that the monitor builds succesfully?
<gchristensen> I don't have faith in monitor... I think this issue-based method has been better?
AllanEsp1nosa has joined #nixos
<MichaelRaskin> Not so much for the baclog
<gchristensen> though as I mentioned just moments ago, ticking off items in a big list on a github issue doesn't scalewell :P
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
<gchristensen> I wonder about a trello board instead, or just zillions of github issues themselves ... I don't like any of these options, TBH.
<nhooyr> looks like it's working now; https://gist.github.com/baf36da59ecb912bad234c4f07542fe4
<MichaelRaskin> Let's take this Git thing that only makes sense for very large projects and doesn't meaningfully scale down, and bolt-on an interface that keeps half of Git's problems and doesn't scale up. Yay.
<MichaelRaskin> I think for the backlog when the monitor manages to build an update, the update is fine most of the time
<gchristensen> lol, re: issues?
<gchristensen> yeah, could be
<Ralith> git works great for small projects!
<MichaelRaskin> Re: Github: re: a lot of stuff
<NixOS_GitHub> [nixpkgs] vcunat closed pull request #21646: gnused: 4.2.2 -> 4.3 (staging...update_sed) https://github.com/NixOS/nixpkgs/pull/21646
<gchristensen> my distrust isn't about it making good updates, my concern is about its thoroughness :)
<gchristensen> which reviewing every issue on lwn covers nicely
<MichaelRaskin> Well, for the old backlog its thoroughness is still better than Gentoo's digging up random stuff
<gchristensen> yeah agreed
<MichaelRaskin> For ongoing stuff I agree that keeping an eye has benefits
<MichaelRaskin> Ralith: I believe that small projects work great for Git, not the other way round.
<guillaum1> I have a program which directly open a file on /usr/share/fonts/. There is a chance of having it working on nixos or I must patch the program?
AllanEsp1nosa has quit [(Ping timeout: 248 seconds)]
<gchristensen> MichaelRaskin: which part doesn't scale down then?
<MichaelRaskin> Git is optimised for octopus performance on complicated merges, and its history recording is lacking because for a large project you cannot reasonbly pay attention to some of the details
<gchristensen> ah :)
<Ralith> MichaelRaskin: I don't understand what you mean by "small projects work great for Git, not the other way round"
<MichaelRaskin> And consistency in terminology? Who needs that
ryantrinkle has quit [(Ping timeout: 248 seconds)]
<MichaelRaskin> Well, I don't say Git has any problems that only happen for small projects; but the small projects cannot find use to the real strong sides of Git, while having to pay all the costs.
<Ralith> speaking as having been using git for small projects for something like a decade now, I feel like you might be overstating the costs and understating the benefits :P
<MichaelRaskin> At some point I have done a cross-comparison of everything I could get my paws on.
<Ralith> admittedly I haven't spent much time with mercurial and such
<MichaelRaskin> Back then I rated Bazaar above Git
<Ralith> perhaps it's not optimal but I'm certainly never going back to svn
<MichaelRaskin> SVN has a ton of good stuff that Git pretends doesn't exist
<gchristensen> yes it does
<MichaelRaskin> (and it has improved the abysmal merges since Git creation)
<MichaelRaskin> In terms of well-considered model of the world Monotone is just catastrophically better than Git.
<MichaelRaskin> Also, Git on ext4 is not poweroff-safe, because it pretends fsync's are for cowards
sboosali has joined #nixos
<gchristensen> anyway
<gchristensen> any good ideas on how to share the task list?
<MichaelRaskin> Create a separate repo and keep them in text files in a format that ensures clean merges?
<MichaelRaskin> (I _hope_ I am kidding)
<gchristensen> so I've thought about using a maildir format ... but it reaaaally ruins the ease of contributing
<Mic92> gchristensen: is the task list about package updates?
<gchristensen> yeah
<gchristensen> I've noticed several times issues with updating the tick-boxes overwriting other people's progress
<MichaelRaskin> Another option is to create a convention about _comment_ format and write a script that automatically creates a summary
<gchristensen> commenting on the issue?
<MichaelRaskin> Well, commenting on the issue when you have finished some step
<gchristensen> yeah
<MichaelRaskin> `libpng` done. I have participated in this roundup before it was cool ^W^W has been announced.
<MichaelRaskin> Maybe «fixed» is the good keyword, judging as «fixes #123» in commits is supposed to be auto-parsed
<gchristensen> yeah, that could be
<gchristensen> (the current tooling is based around a parser / tokenizer)
cybrian has quit [(Quit: cya)]
cybrian has joined #nixos
georges-duperon has joined #nixos
mkoenig has quit [(Read error: Connection reset by peer)]
filterfish has quit [(Ping timeout: 245 seconds)]
pstn has quit [(Ping timeout: 256 seconds)]
<gchristensen> the only thing is having people do that stuff is likely to be quite error prone :(
<gchristensen> maybe I'll rassle someone up at github and see if they're planning on fixing this
mkoenig has joined #nixos
<NixOS_GitHub> [nixpkgs] vcunat closed pull request #21659: bash-4.3-p46 -> bash-4.3-p48 (staging...bash-4.3-p48) https://git.io/vM3HI
<NixOS_GitHub> [nixpkgs] vcunat pushed 6 new commits to staging: https://github.com/NixOS/nixpkgs/compare/ea7b252c9ae0...6f2840c158e9
<NixOS_GitHub> nixpkgs/staging f047838 Daiderd Jordan: bash-4.3-p46 -> bash-4.3-p48
<NixOS_GitHub> nixpkgs/staging fa57b06 Vladimír Čunát: Merge #21659: bash: security 4.3-p46 -> 4.3-p48
<NixOS_GitHub> nixpkgs/staging bde8632 Tuomas Tynkkynen: coreutils: Build with libattr to support xattrs...
<MichaelRaskin> gchristensen: at some point I have participated in creating a set of rules for support query replies that was actully parsable
<MichaelRaskin> And enforcing them
<MichaelRaskin> gchristensen: Also, if someone misses the format, it is an option to reply to them with the correct magic incantation
mkoenig has quit [(Read error: Connection reset by peer)]
guillaum1 has quit [(Ping timeout: 245 seconds)]
<Sonarpulse-Work> pierron: you there?
benzrf has left #nixos ["WeeChat 1.6"]
mkoenig has joined #nixos
filterfish has joined #nixos
filterfish has quit [(Remote host closed the connection)]
cjhowe has joined #nixos
filterfish has joined #nixos
AllanEsp1nosa has joined #nixos
cjhowe has quit [(Client Quit)]
stepcut has joined #nixos
<gchristensen> I think trello might be a sort of "best bet"
<gchristensen> or a github repo specifically for an isolated issue tracker
<gchristensen> I asked github for help
<NixOS_GitHub> [nixpkgs] grahamc pushed 17 new commits to master: https://git.io/vM3jY
<NixOS_GitHub> nixpkgs/master d43479b Matthias Beyer: mdp: 1.0.7 -> 1.0.9
<NixOS_GitHub> nixpkgs/master 95d6480 Matthias Beyer: haxor-news: 0.3.1 -> 0.4.1
<NixOS_GitHub> nixpkgs/master 9680f12 Matthias Beyer: cortex: 2014-08-01 -> 2015-08-23
cjhowe has joined #nixos
AllanEsp1nosa has quit [(Ping timeout: 248 seconds)]