freeman42x[nix] has joined #nixos
<silver_hook> clever, tilpner: when I enable RedShift (through its KDE Plasma applet) it produces the following error: “Trying location provider ‘geoclue2’… Unable to connect to GeoClue. Unable to get location from provider.”
<tilpner> Maybe you have to services.geoclue2.enable = true;...
* tilpner just guessing
* silver_hook slaps his forehead
tptb has quit [(Ping timeout: 260 seconds)]
freeman42x[nix] has quit [(Remote host closed the connection)]
<iMatejC> silver_hook: how about services.redshift.enable
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/v5zJa
<NixOS_GitHub> nixpkgs/master 62ff6cb Peter Hoeg: netalyzr: init at 57861
NixOS_GitHub has left #nixos []
<iMatejC> silver_hook: there are also quite a few options for redshift in nixos https://nixos.org/nixos/manual/options.html
<silver_hook> Why is printing a services.*, but scanning is a hardware.*?
<silver_hook> iMatejC: I actually like that I can turn it on and off through the applet/plasmoid.
<iMatejC> silver_hook: then... maybe .... ? services.xserver.desktopManager.plasma5.extraPackages = [ pkgs.geoclue2 ];
<iMatejC> I am not sure if you need to relogin for that, or if that actually works for that matter
thc202 has quit [(Ping timeout: 240 seconds)]
<Ralith> ime services.redshift is broken
<tilpner> Works fine for me
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Profpatsch opened pull request #29004: Revert "dhall: add a static top-level executable for dhall" (master...master) https://git.io/v5zJd
NixOS_GitHub has left #nixos []
<tilpner> (No geoclue though, I'm fine with having my position in my config)
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Profpatsch closed pull request #29004: Revert "dhall: add a static top-level executable for dhall" (master...master) https://git.io/v5zJd
NixOS_GitHub has left #nixos []
mudri has quit [(Quit: WeeChat 1.9)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Profpatsch closed pull request #28961: Statically link `dhall-*` executables (master...gabriel/static_dhall) https://git.io/v5EuQ
NixOS_GitHub has left #nixos []
<Ralith> when I turn it on my logs get spammed with startup errors and I somehow end up with two instances of it running
<Ralith> very strange
<tilpner> Huh, mine had a restart loop too, but I forgot how I fixed it :/
sellout- has quit [(Quit: Leaving.)]
_ris has quit [(Ping timeout: 240 seconds)]
goodebye has joined #nixos
<goodebye> currently trying to install nixos but during the nixos-install command it fails to download from cache.nixos.org. pinging nixos.org produces a 'name or service not known' error, while pinging virtual anything else returns packets as expected
<goodebye> oddly tho, nixos.org is up on my other devices!
<disasm> goodebye: network functioning?
vaibhavsagar has joined #nixos
<goodebye> yes, can access everything but nixos.org right now as far as i can tell, though i have gotten periodic 'cant find server' errors on other sites while in kde on the live usb
<silver_hook> I just did a nixos-rebuild switch on a 17.09 as well and it’s compiling quite a bit (currently mono) …maybe the prebuilts are not available right now?
<goodebye> very strange
elurin` has joined #nixos
<goodebye> it's not only failing to download from the cache, i can't access nixos.org from the browser period (errors out almost immediately saying it can't find the server) while my other devices on the same network have no problem
* silver_hook goes zzz
elurin has quit [(Ping timeout: 260 seconds)]
numbdewd has joined #nixos
silver_hook has quit [(Ping timeout: 255 seconds)]
<goodebye> more interestingly, installing packages to the live USB via nix-env works fine???
vaibhavsagar has quit [(Ping timeout: 248 seconds)]
nckx has quit [(Quit: Restarting my GuixSD server — https://gnu.org/s/guix)]
nckx has joined #nixos
sigmundv__ has quit [(Ping timeout: 240 seconds)]
zraexy has quit [(Quit: Leaving.)]
Khetzal has quit [(Remote host closed the connection)]
vaibhavsagar has joined #nixos
zraexy has joined #nixos
Khetzal has joined #nixos
<fearlessKim[m]> hi I want to develop neovim on nixos. To do so, I've had to do a significant number of changes to nixpkgs/.../neovim/default.nix. Do I need to maintain the dev version out of tree ?
jellowj has quit [(Ping timeout: 240 seconds)]
<tilpner> What do you mean? If you want a version that's not in nixpkgs, you need to maintain it outside of nixpkgs... I don't understand what you're asking
goodebye has quit [(Ping timeout: 260 seconds)]
Supersonic112 has quit [(Disconnected by services)]
Supersonic112_ has joined #nixos
Supersonic112_ is now known as Supersonic112
<fearlessKim[m]> when I started using nixos, I thought it would easily let me switch between the stable and dev/master version but it seems like it only refers to stable versions
<fearlessKim[m]> for instance, I had imagined that I could install either PKG_X or PKG_X-dev
sellout- has joined #nixos
sellout- has quit [(Client Quit)]
<vaibhavsagar> I don't understand, I think Nix does allow you to do this
remexre has joined #nixos
mbrgm has quit [(Ping timeout: 240 seconds)]
<fearlessKim[m]> in general it's easy, e.g., change version by "master" but in the neovim case, it's more complex because neovim-dev fetches its dependancies on its own
mbrgm has joined #nixos
<tilpner> fearlessKim[m] - By foo-dev, do you mean a Debian-style package that includes development headers, or a newer version of the foo package
<clever> fearlessKim[m]: your not supposed to install a package like foo-dev, but rather, create a shell.nix that gives you an environment suitable for building something
<fearlessKim[m]> a newer version of the package (true that was confusing)
<tilpner> fearlessKim[m] - If you mean a newer version, you probably want to look at using multiple channels. You can mix channels and pick packages from different channels
<tilpner> fearlessKim[m] - That allows you to e.g. pick your core environment from the stable channel, while taking development tools from a more recent/unstable channel
<fearlessKim[m]> tilpner there is no channel with a neovim-dev version
<fearlessKim[m]> and a neovim-dev/default.nix would substantially differ from a neovim/default.nix because neovim downloads all its dependancies in a .deps folder, which shouldn't be required for the stable version
<tilpner> You're contradicting yourself. A newer version of neovim would not have a different structure
<tilpner> A development version (which we don't have), might
<fearlessKim[m]> tilpner maybe that can shed some light on my problems https://github.com/NixOS/nixpkgs/issues/11009
<fearlessKim[m]> like right now I can't run tests because tests rely on packages not available in nixpkgs while neovim downloads them in neovim/.deps
<fearlessKim[m]> Note that I don't mind packaging those for nixpkgs
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/v5zIE
<NixOS_GitHub> nixpkgs/master 6f6a7aa Peter Hoeg: dbus-broker: meson and ninja hooks handle most things for us
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to release-17.09: https://git.io/v5zI2
<NixOS_GitHub> nixpkgs/release-17.09 5ab8db6 Peter Hoeg: dbus-broker: meson and ninja hooks handle most things for us...
NixOS_GitHub has left #nixos []
<tilpner> I don't know how tests are usually handled, sorry
numbdewd has quit [(Remote host closed the connection)]
<fearlessKim[m]> tilpner, thanks for the help. Maybe an easier question. For instance neovim depends on "busted". I can install it via `luarocks install --local busted` (sudo luarocks install busted says I don't have the permission). so busted binary becomes available in $HOME/.luarocks/bin (which is not in $PATH). I believe the nixos way would be nix-env -i luaPackages.busted . Is there like a luarocks pkg list -> luaPackages.nix
<fearlessKim[m]> generator (like there is
<fearlessKim[m]> for haskell hackage or should I write one/write a specific derivation for busted)
<tilpner> I don't use Lua much, let's look at the manual: https://nixos.org/nixpkgs/manual/#sec-language-lua
<tilpner> (I'm not aware of a tool that generates expressions for lua packages)
scribbler has quit [(Remote host closed the connection)]
scribbler has joined #nixos
<dalaing> I've had a transient failure building findutils, while building something with Hydra
<dalaing> and it's cached
<dalaing> I'm trying to work out how to tell hydra to just try building it again
<tilpner> It... cached the failure?
<dalaing> something bad happened with locks and max cpu
<dalaing> "Clear failed builds cache" doesn't seem to be helping
scribbler has quit [(Ping timeout: 248 seconds)]
<dalaing> and it doesn't seem like a nix-store repair is helping - it's just remembering that this particular thing failed and not trying to build it again
scribbler has joined #nixos
sellout- has joined #nixos
scribbler has quit [(Ping timeout: 248 seconds)]
mrkgnao has joined #nixos
b has quit [(Quit: Lost terminal)]
scribbler has joined #nixos
<fearlessKim[m]> tilpner, thanks for the link
scribbler has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
Kingsquee has quit [(Quit: https://i.imgur.com/qicT3GK.gif)]
eacameron has quit [(Ping timeout: 252 seconds)]
eacameron has joined #nixos
numbdewd has joined #nixos
<dalaing> is there any info out there on making hydra try to build a dependency again (in order to recover from transient failures)
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] disassembler opened pull request #29006: srcml: fix build with gcc6 (master...srcml) https://git.io/v5ztg
NixOS_GitHub has left #nixos []
eacameron has quit [(Ping timeout: 248 seconds)]
<dalaing> I guess https://nixos.org/nix-dev/2009-July/002716.html is pretty similar to what I'm talking about
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] mguentner opened pull request #29007: avr-*: split avr-gcc-libc into separate packages (master...avrclean) https://git.io/v5ztD
NixOS_GitHub has left #nixos []
mguex has joined #nixos
<Rotaerk> hmm, I see a vulkan-loader package, but not the vulkan SDK, in nixos pkgs
<Rotaerk> is it not there or am I searching for the wrong thing
spear2 has joined #nixos
sary has joined #nixos
<Ralith> what do you expect "the vulkan SDK" to contain?
<thoughtpolice> Ralith: vulkan-loader should contain the e.g. include and lib files you need.
<Ralith> I dunno why you're telling me that :p
<thoughtpolice> Err, tab complete
<thoughtpolice> Rotaerk: ^^
Kingsquee has joined #nixos
<thoughtpolice> Also, other distros tend to separate the loading/ICD component in a separate package from the actual headers, which is probably the source of the confusion; e.g. my Fedora machine has "vulkan-filesystem" and "vulkan-devel" and I wouldn't be surprised if others were the same. To be fair, we have multiple outputs, but this isn't exactly clear if you do, like, `nix-env -qAP ... | grep vulkan`, you'd have to understand the
<thoughtpolice> package...
<Rotaerk> hmm I'm just starting to learn vulkan, and the tutorial mentioned installing the SDK; I thought the loader was just a small part of it
<Rotaerk> (i.e. the part that dynamically looks-up vulkan functions at runtime)
<Rotaerk> but if you say the vulkan-loader package contains all the things I need, great
<thoughtpolice> Right, I was also going to say, the LunarG website kind of makes it seems like there are really a bunch of packages and they install all of them or something
<thoughtpolice> But it's actually all in one repository; splitting it up into multiple packages a choice of Distros or people like Nvidia or whatever
<Rotaerk> gotcha
<mrkgnao> I've been trying to get Hakyll to work with a cabal2nix default.nix, but I'm running into some problems: inside the shell, cabal configure fails to find Hakyll.
<thoughtpolice> Everything else should be included FWIW, I think all 3 major GPU packages have Vulkan support too.
<thoughtpolice> (MESA package is built with it, and AMDGPU drivers/Nvidia blobs are installed properly as well"
<gchristensen> domenkozar, garbas: https://github.com/NixOS/nixos-homepage/pull/160
<mrkgnao> nvm, I'm dumb (for *cough* posterity, I needed to pass -A my_package.env instead of -A my_package)
<Ralith> I dunno about dumb, I can never keep that stuff straight either
<Ralith> Rotaerk: the whole notion of a "SDK" is kind of alien to linux, really
<Ralith> upstream vulkan packaging has also historically been a total mess
<Rotaerk> "This comprehensive SDK includes the Vulkan loader, Vulkan layers, debugging tools, SPIR‐V tools, the Vulkan run time installer, documentation, samples, and demos."
<Rotaerk> yea, I suppose a lot of that's just not relevant to building an application that uses vulkan...
<Rotaerk> well, building or running
<Ralith> this isn't windows, you don't need to go download third party monolithic installer bundles to get anything done ^^
mguex has quit [(Quit: WeeChat 1.9)]
<Ralith> you will probably want to separately install shaderc or similar too
mguex has joined #nixos
<Rotaerk> ah yea I see that's its own package
reinzelmann has joined #nixos
mguex has quit [(Quit: WeeChat 1.9)]
mguex has joined #nixos
ison111 has joined #nixos
nh2 has joined #nixos
schoppenhauer has quit [(Ping timeout: 248 seconds)]
schoppenhauer has joined #nixos
Kingsquee has quit [(Read error: Connection reset by peer)]
Kingsquee has joined #nixos
<Rotaerk> is there some command to see which binary caches will be used by nix-build
<Rotaerk> i.e. to make sure I configured it correctly and it's ready to go
<clever> Rotaerk: only thing i can think of is to read nix.conf and then try to curl each .narinfo in order
<Rotaerk> hmm thanks
<Rotaerk> never heard of a ".narinfo"
<clever> you know the url for narinfo files?
<clever> its just the hash from any storepath
proteusguy has quit [(Remote host closed the connection)]
<clever> nix downloads those for everything it wants to install, and any that 200 are in the cache
<clever> any that 404 have to be built locally
<clever> and the info file says where to dl it
<Rotaerk> I see
<Rotaerk> cool
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/5ab8db6599 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
vaibhavsagar has quit [(Ping timeout: 248 seconds)]
<Rotaerk> btw, how is one expected to discover the nix.binaryCaches setting for nixos/configuration.nix? I found mention of it, but not in nix/nixos documentation
<Rotaerk> ah, cool; wasn't aware of that
<clever> there is also "man configuration.nix"
<Rotaerk> ah right... forgot about that
<Rotaerk> the problem I tend to run into with linux is that I learn stuff, and then go for months without doing OS-stuff, and forget things
ryantrinkle has quit [(Ping timeout: 240 seconds)]
ryantrinkle has joined #nixos
scribbler has joined #nixos
scribbler has quit [(Remote host closed the connection)]
scribbler has joined #nixos
scribbler has quit [(Remote host closed the connection)]
scribbler has joined #nixos
scribbler has quit [(Remote host closed the connection)]
scribbler has joined #nixos
Ivanych has joined #nixos
vaibhavsagar has joined #nixos
scribbler has quit [(Remote host closed the connection)]
jsgrant has quit [(Quit: jsgrant)]
jsgrant has joined #nixos
scribbler has joined #nixos
scribbler has quit [(Ping timeout: 240 seconds)]
stanibanani has joined #nixos
jsgrant has quit [(Client Quit)]
jsgrant has joined #nixos
Ivanych has quit [(Ping timeout: 240 seconds)]
Arcaelyx has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
MercurialAlchemi has joined #nixos
<Lisanna> Hey guys, is there a cheap way in NixOS to build arbitrary directory structures w/ files as derivations?
<clever> Lisanna: runCommand
<Lisanna> e.g., mkfsderivation { "parentdir" = { "file1" = ./path/to/file1; "file2" = ./path/to/myfile2; }; "file3" = ./my/file3; };
<Lisanna> let me look at runCommand
<clever> runCommand "name" {} ''
<clever> mkdir -pv $out
<clever> cp -vi ${./file1} $out/file1
<clever> repeat as needed
<clever> '';
<Lisanna> Okay, that seems cheap enough to be tolerable, would be cool if there was something with syntax more like what I pasted though
elurin` has quit [(Quit: ERC (IRC client for Emacs 25.2.1))]
<clever> setup-etc is the closest thing to what you want, but that only works in /etc
fxr has joined #nixos
elurin has joined #nixos
elurin is now known as Guest73013
Guest73013 has quit [(Client Quit)]
elurin` has joined #nixos
elurin` has quit [(Client Quit)]
elurin` has joined #nixos
elurin` has quit [(Client Quit)]
fxr has quit [(Ping timeout: 240 seconds)]
ertes has quit [(Ping timeout: 248 seconds)]
hotfuzz_ has joined #nixos
hotfuzz has quit [(Ping timeout: 248 seconds)]
silver_hook has joined #nixos
silver_hook has quit [(Changing host)]
silver_hook has joined #nixos
leat has quit [(Quit: leat)]
stanibanani has quit [(Ping timeout: 260 seconds)]
ertes-w has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5zns
<NixOS_GitHub> nixpkgs/master d93e2cc Samuel Leathers: srcml: fix build with gcc6
<NixOS_GitHub> nixpkgs/master 7f8ff02 Jörg Thalheim: Merge pull request #29006 from disassembler/srcml...
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.09: https://git.io/v5znn
<NixOS_GitHub> nixpkgs/release-17.09 a8a33fe Samuel Leathers: srcml: fix build with gcc6...
NixOS_GitHub has left #nixos []
scribbler has joined #nixos
<Lisanna> How do lists get passed into the bash builder scripts?
<Lisanna> i.e. a = [ 1 2 3 ]; builder= ./myscript.sh;
proteusguy has joined #nixos
scribbler has quit [(Remote host closed the connection)]
akl has joined #nixos
vaibhavsagar_ has joined #nixos
numbdewd has quit [(Remote host closed the connection)]
vaibhavsagar has quit [(Ping timeout: 240 seconds)]
FRidh has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] FRidh closed pull request #28932: pythonPackages.pytest-flake8: fix strict mode (master...fix-pytest-flake8) https://git.io/v50HR
NixOS_GitHub has left #nixos []
jellowj has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] peti closed pull request #27209: Enable multiple outputs for haskell packages. (master...nc/haskell-multiple-out) https://git.io/vQo9v
NixOS_GitHub has left #nixos []
vaibhavsagar_ has quit [(Remote host closed the connection)]
vaibhavsagar_ has joined #nixos
<Lisanna> sphalerite: oh, there it is, I missed that
<Lisanna> thank you ^^
<sphalerite> NP :)
odi has joined #nixos
erictapen has joined #nixos
pfranz has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #29000: skrooge: 2.8.1 -> 2.9.0 (master...u/skrooge-2.9.0) https://git.io/v5ubz
NixOS_GitHub has left #nixos []
civodul has joined #nixos
leat has joined #nixos
thblt has joined #nixos
thc202 has joined #nixos
nix-gsc-io`bot has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] adisbladis opened pull request #29008: go-ethereum: 1.6.6 -> 1.6.7 (master...geth167) https://git.io/v5zWE
NixOS_GitHub has left #nixos []
erictapen has quit [(Ping timeout: 248 seconds)]
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/a8a33fe284 (from 50 minutes ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
scribbler has joined #nixos
hotfuzz_ is now known as hotfuzz
nschoe has joined #nixos
scribbler has quit [(Ping timeout: 246 seconds)]
mudri has joined #nixos
scribbler has joined #nixos
pie__ has quit [(Ping timeout: 240 seconds)]
<neonfuz> so with my laptop, I have to rely on an external usb wifi card that I have to plug in
<neonfuz> upon sleeping my computer, or unpluggind and plugging the card, I have to restart the wpa_supplicant service
<neonfuz> is there any way to make this automatic?
jellowj has quit [(Ping timeout: 260 seconds)]
<sphalerite> how can I get the character sequence '${ verbatim in a multiline string?
odi has quit [(Ping timeout: 260 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 10 new commits to master: https://git.io/v5zla
<NixOS_GitHub> nixpkgs/master df96c26 Josef Kemetmueller: pythonPackages.shapely: Fix search for libc...
<NixOS_GitHub> nixpkgs/master d25edeb Josef Kemetmueller: pythonPackages.click-plugins: init at 1.0.3
<NixOS_GitHub> nixpkgs/master 4d70d53 Josef Kemetmueller: pythonPackages.cligq: init at 0.4.0
NixOS_GitHub has left #nixos []
pfranz has quit [()]
<sphalerite> neonfuz1: make a systemd unit with WantedBy=suspend.target and After=suspend.target, I think
scribbler has quit [(Remote host closed the connection)]
<sphalerite> neonfuz: so something like systemd.services.fix-wifi-after-suspend = {script = "systemctl restart wpa_supplicant"; wantedBy = ["suspend.target"]; after = ["suspend.target"]; serviceConfig.Type = "oneshot"};
<sphalerite> (not tested)
<vaibhavsagar_> how does auto-optimise-store work?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #29008: go-ethereum: 1.6.6 -> 1.6.7 (master...geth167) https://git.io/v5zWE
NixOS_GitHub has left #nixos []
<vaibhavsagar_> I see that the nix-optimise service is linked
<vaibhavsagar_> but I can't see anything that calls it
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.09: https://git.io/v5zlS
<NixOS_GitHub> nixpkgs/release-17.09 dbf7ed1 adisbladis: go-ethereum: 1.6.6 -> 1.6.7...
NixOS_GitHub has left #nixos []
<sphalerite> vaibhavsagar_: see https://nixos.org/nixos/options.html#optimise.
<symphorien> You can also have wpa-supplicant depend on <your wifi card>.device
<vaibhavsagar_> sphalerite: that doesn't answer my question. What calls `nix-store --optimise` when that option is set?
odi has joined #nixos
<sphalerite> vaibhavsagar_: See the implementation, which is linked from options.html. https://github.com/NixOS/nixpkgs/blob/release-17.03/nixos/modules/services/misc/nix-optimise.nix#L41-L45 it creates a systemd unit
<vaibhavsagar_> sphalerite: that's the other option below it!
<vaibhavsagar_> nix.optimise.automatic != nix.autoOptimiseStore
<sphalerite> oh right, the other one is a nix-daemon option
<vaibhavsagar_> so do I need to set the other one as well?
<sphalerite> nix.conf contains the same description :/
<vaibhavsagar_> yes, this is why I asked
<sphalerite> no, one should be enough. You're right though, it's not very clear when optimise happens with that one
<sphalerite> but given that you were talking about a nix-optimise service I assumed you were talking about nix.optimise.automatic
neonfuz has quit [(Ping timeout: 240 seconds)]
<vaibhavsagar_> ah, that's fair
<vaibhavsagar_> I don't care when exactly it happens, but I can't see where that option is actually making any difference
<sphalerite> it's an option for the nix daemon, so it depends on that
<vaibhavsagar_> all nix-daemon seems to be doing is updating nix.conf
<sphalerite> no that's what the module is doing
odi has quit [(Quit: Lost terminal)]
<sphalerite> nix-daemon is then reading nix.conf, but what it does isn't entirely clear
<sphalerite> I'm looking at the source but it's still not quite clear
<sphalerite> right so it seems to call LocalStore::optimisePath as part of any operation that adds a path to the store
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5z8u
<NixOS_GitHub> nixpkgs/master bf33bf5 catern: mutt: add Kerberos support
<NixOS_GitHub> nixpkgs/master a9e6068 Jörg Thalheim: Merge pull request #28995 from catern/patch-3...
NixOS_GitHub has left #nixos []
<sphalerite> so sort of like running nix-store --optimise on every path add, I think. Sounds expensive
<vaibhavsagar_> thanks sphalerite :)
<sphalerite> I might be wrong though. Either way I'm fairly sure nix.optimise.automatic is what you want
neonfuz has joined #nixos
<neonfuz> sphalerite: didn't work
<neonfuz> I want it to work upon plugging it too
<vaibhavsagar_> where did you find that in the source?
<vaibhavsagar_> I'm looking at https://github.com/NixOS/nix/blob/master/src/nix-daemon/nix-daemon.cc and I can't see optimisePath anywhere
<neonfuz> maybe I need something bigger like network manager?
<sphalerite> neonfuz: maybe what symphorien said then
jellowj has joined #nixos
<sphalerite> vaibhavsagar_: it's not actually nix-daemon specific sorry. libstore/optimise-store.cc
<neonfuz> sorry, my irc client got kicked before for some reason
<neonfuz> so I can't see
<sphalerite> symphorien wrote: You can also have wpa-supplicant depend on <your wifi card>.device
<neonfuz> hmm, alright
<neonfuz> interesting
<neonfuz> I think I'll do that
<sphalerite> but yes, network-manager would probably be an easier solution
<sphalerite> Is there something similar to python.withPackages for perl?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] FRidh pushed 1 new commit to staging: https://git.io/v5z4B
<NixOS_GitHub> nixpkgs/staging d7ef196 Frederik Rietdijk: Merge remote-tracking branch 'upstream/master' into HEAD
NixOS_GitHub has left #nixos []
goibhniu has joined #nixos
phinxy has joined #nixos
takle has quit [(Remote host closed the connection)]
erictapen has joined #nixos
__Sander__ has joined #nixos
jellowj has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
Neo-- has joined #nixos
kellino has joined #nixos
eacameron has quit [(Ping timeout: 240 seconds)]
odi has joined #nixos
elurin has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5zRX
<NixOS_GitHub> nixpkgs/master b5eb923 catern: offlineimap: add Kerberos support
<NixOS_GitHub> nixpkgs/master f91b4de Jörg Thalheim: Merge pull request #28993 from catern/patch-1...
NixOS_GitHub has left #nixos []
pietranera has joined #nixos
ambro718 has joined #nixos
ThatDocsLady has joined #nixos
rickynils has joined #nixos
ThatDocsLady has quit [(Remote host closed the connection)]
erictapen has quit [(Ping timeout: 248 seconds)]
erictapen has joined #nixos
jellowj has joined #nixos
ison111 has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
scribbler has joined #nixos
ambro718 has quit [(Ping timeout: 255 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/v5zzI
<NixOS_GitHub> nixpkgs/master b80c364 Kamil Chmielewski: ponyc: 0.18.1 -> 0.19.0...
NixOS_GitHub has left #nixos []
takle has quit [(Ping timeout: 248 seconds)]
ThatDocsLady has joined #nixos
takle has joined #nixos
takle has quit [(Remote host closed the connection)]
takle has joined #nixos
mudri` has joined #nixos
jsgrant has quit [(Quit: jsgrant)]
viric has quit [(Read error: Connection reset by peer)]
viric has joined #nixos
jsgrant has joined #nixos
mudri has quit [(Ping timeout: 248 seconds)]
jsgrant has quit [(Client Quit)]
jsgrant has joined #nixos
kellino has quit [(Quit: leaving)]
rickynils has quit [(Quit: leaving)]
scribbler has quit [(Remote host closed the connection)]
92AABUI43 has joined #nixos
<92AABUI43> [nixpkgs] peti closed pull request #28478: haskell infra: Make sure packages get custom stdenv (master...haskell-custom-stdenv) https://git.io/v5kcs
92AABUI43 has left #nixos []
07IAAZ1M6 has joined #nixos
<07IAAZ1M6> [nixpkgs] peti pushed 2 new commits to master: https://git.io/v5zaP
<07IAAZ1M6> nixpkgs/master 19de1f5 John Ericson: haskell infra: Make sure packages get custom stdenv...
<07IAAZ1M6> nixpkgs/master 1357268 Peter Simons: Merge pull request #28478 from obsidiansystems/haskell-custom-stdenv...
07IAAZ1M6 has left #nixos []
pie_ has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] FRidh pushed 65 new commits to staging: https://git.io/v5zaA
<NixOS_GitHub> nixpkgs/staging f3400b5 Jörg Thalheim: python.pkgs.urrlib3: 1.20 -> 1.22
<NixOS_GitHub> nixpkgs/staging b4dbd7f Jörg Thalheim: python.pkgs.chardet: 2.3.0 -> 3.0.4
<NixOS_GitHub> nixpkgs/staging 8bc620d Jörg Thalheim: python.pkgs.flask-compress: 1.3.2 -> 1.4.0
NixOS_GitHub has left #nixos []
scribbler has joined #nixos
mudri` is now known as mudri
eacameron has joined #nixos
<mudri> How can I find the last commit before a given nixpkgs-channels update?
leat has quit [(Ping timeout: 246 seconds)]
<mudri> Basically, I want to compare the previous version of nixos-unstable to the new version.
pie_ has quit [(Read error: Connection reset by peer)]
pie_ has joined #nixos
Capprentice has joined #nixos
eacameron has quit [(Ping timeout: 260 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] bkchr closed pull request #26282: Upgrades Airwave to version 367 (master...airwave_upgrade) https://git.io/vHRvI
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] FRidh opened pull request #29009: Python: several fixes (2) (staging...python-fixes-2) https://git.io/v5zw5
NixOS_GitHub has left #nixos []
erictapen has quit [(Ping timeout: 248 seconds)]
<LnL> lol, that also works :)
<sphalerite> LnL: yours doesn't help finding the *previous* version
<sphalerite> does it?
<LnL> oh I read for not before
<mudri> Thanks!
<mudri> I didn't know the bot posted here.
pie_ has quit [(Ping timeout: 240 seconds)]
erictapen has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] makefu opened pull request #29010: tpm-tools: fix misleading-indentation error (master...pkgs/tpm-tools/fix) https://git.io/v5zo6
NixOS_GitHub has left #nixos []
anderslundstedt has quit [(Quit: leaving)]
proteusguy has quit [(Remote host closed the connection)]
erictapen has quit [(Ping timeout: 248 seconds)]
pie_ has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] makefu closed pull request #29010: tpm-tools: fix misleading-indentation error (master...pkgs/tpm-tools/fix) https://git.io/v5zo6
NixOS_GitHub has left #nixos []
<fearlessKim[m]> someoneelse commited to my PR https://github.com/NixOS/nixpkgs/pull/28916/commits/de5a075ad193af7620090a730f7242d5293225c6, how can I retrieve that commit locally please ?
JagaJaga has joined #nixos
<kragniz> fearlessKim[m]: should be pushed to the branch on your fork
<sphalerite> fearlessKim: just pull
<fearlessKim[m]> indeed great
Piece_Maker has joined #nixos
<fearlessKim[m]> hum if I want to add myself as a maintainer, is adding `maintainer = with maintainers; [ teto ];` enough ? like should it be the github id or anything works ?
<fpletz> fearlessKim[m]: you also have to add that key and your name/mail-address to lib/maintainers.nix
<fpletz> fearlessKim[m]: the key/name should be your github username
simukis has joined #nixos
Acou_Bass has quit [(Ping timeout: 246 seconds)]
Piece_Maker is now known as Acou_Bass
<fearlessKim[m]> is it acceptable to propose a package without a maintainer field ? some packages don't have one
<fpletz> fearlessKim[m]: it is acceptable but we prefer packages that have someone that takes care of it - very obscure and old software can be rejected without a maintainer
<fearlessKim[m]> looks normal. Ok I'll try to be a good maintainer (as long as it's just changing the version field, that should be a breeze), though I don't like putting my email into a public file
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/v5zP8
<NixOS_GitHub> nixpkgs/master 7753daa Franz Pletz: connman: 1.34 -> 1.35...
NixOS_GitHub has left #nixos []
MercurialAlchemi has quit [(Ping timeout: 240 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 2 new commits to release-17.03: https://git.io/v5zPy
<NixOS_GitHub> nixpkgs/release-17.03 dd74be6 romildo: connman: 1.33 -> 1.34...
<NixOS_GitHub> nixpkgs/release-17.03 c1e2390 Franz Pletz: connman: 1.34 -> 1.35...
NixOS_GitHub has left #nixos []
michaelpj has joined #nixos
anderslundstedt has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 9 new commits to release-17.09: https://git.io/v5zXE
<NixOS_GitHub> nixpkgs/release-17.09 42c6830 Vladimír Čunát: maxx: license fixups...
<NixOS_GitHub> nixpkgs/release-17.09 531d379 Peter Hoeg: netalyzr: init at 57861...
<NixOS_GitHub> nixpkgs/release-17.09 24071cb Profpatsch: Revert "dhall: add a static top-level executable for dhall"...
NixOS_GitHub has left #nixos []
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/dbf7ed1306 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
phinxy has quit [(Read error: Connection reset by peer)]
phinxy has joined #nixos
leat has joined #nixos
<sphalerite> fearlessKim: it's already in your commits publicly, so I don't see what difference it makes really :p
ShalokShalom_ has joined #nixos
scribbler has quit [(Ping timeout: 248 seconds)]
qknight has joined #nixos
JagaJaga has quit [(Ping timeout: 240 seconds)]
ShalokShalom has quit [(Ping timeout: 240 seconds)]
hamishmack has quit [(Ping timeout: 246 seconds)]
scribbler has joined #nixos
<LnL> it's used by hydra to send you an email if that package breaks
ShalokShalom_ is now known as ShalokShalom
hamishmack has joined #nixos
hamishmack has quit [(Client Quit)]
vaibhavsagar_ has quit [(Ping timeout: 248 seconds)]
hamishmack has joined #nixos
<Mic92> Does anybody now how to set gcc = gcc5 for the chromiumos kernel modules? This would fix quite a lot of builds.
<globin> Mic92: might be enough to add it to the buildinputs
<Mic92> globin: you mean the derivation for the kernel? At the moment all third-party modules fail to build
<Mic92> linuxPackages_chromiumos_3_18
<globin> Mic92: no in the modules
<Mic92> that would be all modules for all kernels
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] gnidorah opened pull request #29012: maxx: allow launching individual components (master...maxx) https://git.io/v5zDD
NixOS_GitHub has left #nixos []
<Mic92> I don't think we want this downgrade in general
mudri has quit [(Ping timeout: 240 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 3 new commits to master: https://git.io/v5zD7
<NixOS_GitHub> nixpkgs/master 82e0b91 Peter Hoeg: libktorrent: 2.0.1 -> 2.1
<NixOS_GitHub> nixpkgs/master 17f4cb4 Peter Hoeg: ktorrent: 5.0.1 -> 5.1.0
<NixOS_GitHub> nixpkgs/master a147306 Peter Hoeg: Merge pull request #28828 from peterhoeg/u/kt5...
NixOS_GitHub has left #nixos []
anderslundstedt has quit [(Quit: leaving)]
anderslundstedt has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] michelk opened pull request #29013: saga: 2.3.1 -> 5.0.0 (master...saga) https://git.io/v5zyL
NixOS_GitHub has left #nixos []
mudri has joined #nixos
nh2 has quit [(Quit: Leaving.)]
pietranera has quit [(Ping timeout: 255 seconds)]
spear2 has quit [(Remote host closed the connection)]
viric has quit [(Read error: Connection reset by peer)]
viric has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 5 new commits to master: https://git.io/v5z95
<NixOS_GitHub> nixpkgs/master a5e9a31 Franz Pletz: advancecomp: 1.23 -> 2.0
<NixOS_GitHub> nixpkgs/master abba0b1 Franz Pletz: asterisk-stble: 14.6.0 -> 14.6.1
<NixOS_GitHub> nixpkgs/master 9d74250 Franz Pletz: asterisk-lts: 13.15.0 -> 13.17.1
NixOS_GitHub has left #nixos []
mudri has quit [(Ping timeout: 264 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 5 new commits to release-17.09: https://git.io/v5z9A
<NixOS_GitHub> nixpkgs/release-17.09 dd788df Franz Pletz: advancecomp: 1.23 -> 2.0...
<NixOS_GitHub> nixpkgs/release-17.09 a812bc0 Franz Pletz: asterisk-stble: 14.6.0 -> 14.6.1...
<NixOS_GitHub> nixpkgs/release-17.09 db84535 Franz Pletz: asterisk-lts: 13.15.0 -> 13.17.1...
NixOS_GitHub has left #nixos []
nikola_i has joined #nixos
MercurialAlchemi has joined #nixos
pietranera has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] aske opened pull request #29015: xflux-gui: 2016-09-21 -> 1.1.10 (master...xflux-gui) https://git.io/v5zHl
NixOS_GitHub has left #nixos []
<nikola_i> sphalerite: i finally got bumblebee working with nvidia. yay :)
<nikola_i> would you like to see the config?
* goibhniu is delighted to hear it :D
<goibhniu> any luck with prime?
proteusguy has joined #nixos
<nikola_i> goibhniu: nvidia-prime is a separate package offered by nvidia. it needs to converted to nixpkg before it can be used
<goibhniu> oh! could you show me where you can get it?
<goibhniu> I might give that a shot myself
<nikola_i> goibhniu: glad you could find the time. here it is https://launchpad.net/ubuntu/+source/nvidia-prime
<goibhniu> ah, that's what stumps me though ... I can only seem to find a debian/ubuntu package
<nikola_i> there's a source tar.gz too
<goibhniu> and AFAICT that's just a bunch of scripts and config (but I may well have missed something)
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 3 new commits to release-17.03: https://git.io/v5zQs
<NixOS_GitHub> nixpkgs/release-17.03 f602ea0 hsloan: tcpdump: Don't use stdenv.cross...
<NixOS_GitHub> nixpkgs/release-17.03 a60d54a WilliButz: tcpdump: 4.9.0 -> 4.9.1...
<NixOS_GitHub> nixpkgs/release-17.03 c7e73c2 Franz Pletz: tcpdump: fix multiple CVEs...
NixOS_GitHub has left #nixos []
seanparsons has quit [(Read error: Connection reset by peer)]
<symphorien> <nikola_i> sphalerite: i finally got bumblebee working with nvidia. yay :) <-- you might want to put it on the wiki, i guess there is nothing on the subject yet
<goibhniu> I'd also be very interested in your nixos bumblebee config, I haven't managed to get that working
<nikola_i> goibhniu: i'm not sure what you are missing. prime just provides an easy conguration for switching between nvidia/intel gpus
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 opened pull request #29016: linux_chromiumos_3_18: remove kernel due lack of maintainer/breakage (master...chromiumos) https://git.io/v5zQw
NixOS_GitHub has left #nixos []
seanparsons has joined #nixos
nslqqq has joined #nixos
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.03-small advanced to https://github.com/NixOS/nixpkgs/commit/c1e2390c39 (from 81 minutes ago, history: https://channels.nix.gsc.io/nixos-17.03-small)
nix-gsc-io`bot has quit [(Client Quit)]
<nikola_i> goibhniu: here https://gist.github.com/anonymous/de46bce5bd3ce75bc0677e7fc1bfe0b0 3 lines worked for me. 2x hardware.bumblebee 1x videoDrivers
<fadenb> Does a nix-shell create some kind of private /tmp ?
<fadenb> I am asking because if I do a `cat /tmp/s3_sincedb` in a nix-shell i started with `nix-shell -p logstash` i see the contents of the file but if I do it outside of the nix-shell the file is empty
<goibhniu> nikola_i: awesome, thanks!
gnuhurd has joined #nixos
<nikola_i> goibhniu: do you use spotify? i don't find a flash player in nixpkgs
<Mic92> fadenb: it exports TMPDIR
<goibhniu> nikola_i: ah, you need to use allowUnfree
<Mic92> TMPDIR=/run/$UID/
pie_ has quit [(Ping timeout: 248 seconds)]
reinzelmann has quit [(Ping timeout: 240 seconds)]
<fadenb> hmm, that should not affect my files with the absolute path in /tmp/filename ?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] oxij opened pull request #29017: pythonPackages: new and updates (master...pkg/python-packages) https://git.io/v5z7o
NixOS_GitHub has left #nixos []
<Mic92> no
reinzelmann has joined #nixos
<goibhniu> nikola_i: regarding prime support ... it's still not clear to me if we need something extra from nvidia, or if it's all in the driver but we just need to do provide some extra config
<fadenb> fascinating, the issue with different file contents only affects files written by logstash started in the nix shell. Files I create with vim in the shell are always the same
<nikola_i> goibhniu: i had to use allowUnfree while installing nvidia. as far as prime goes, it does not provide any additional functionality that the driver already doesn't. it just allows dynamic switching
<nikola_i> with the best performance.i noticed some lag in bumblebee optirun and primusrun
<goibhniu> nikola_i: cool, thanks
<nikola_i> goibhniu: are you using a flash player for any browser application. i couldn't find flash player in nixpkgs
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] jlesquembre opened pull request #29018: hyper: 1.3.3 -> 1.4.3 (master...hyper) https://git.io/v5z5W
NixOS_GitHub has left #nixos []
<goibhniu> nikola_i: it may not be obvious, but settings in configuration.nix don't effect nix-env ... so you won't be able to search for unfree packages or install them with nix-env unless you add the section to ~/.config/nixpkgs/config.nix
* goibhniu fixes that section of the wiki
erictapen has joined #nixos
<nikola_i> goibhniu: i can't find it even here https://nixos.org/nixos/packages.html
anderslundstedt has quit [(Quit: leaving)]
<goibhniu> that also doesn't list unfree packages
jellowj has quit [(Ping timeout: 264 seconds)]
<globin> nikola_i: you can run "NIXPKGS_ALLOW_UNFREE=1 nix-env ..."
<sphalerite> nikola_i: for firefox put `{ firefox.enableAdobeFlash = true; allowUnfree = true; }` in ~/.config/nixpkgs/config.nix
<sphalerite> then nix-env -iA nixos.firefox
<sphalerite> alternatively google chrome comes with flash support built in IIRC so if you allow unfree and nix-env -iA nixos.google-chrome it should also work
<nikola_i> sphalerite: what's the correct way to search a package matching a pattern. is is nix-env -qa 'flash*' or nix-env -qa flash*. both are giving me empty results
<makefu> for writing backwards-compatible code, what is the best way to check if a module has a certain option? for example nginx.virtualHosts.<host>.port got killed but i have machines running unstable and 17.03
takle has quit [(Remote host closed the connection)]
<sphalerite> nikola_i: nix-env -qaP .*flash.* should find it. But using nix-env -q for querying packages kind of sucks, it's just not a great UI. You could install nox, then search using e.g. nox flash
aloiscochard has joined #nixos
<sphalerite> nikola_i: but wiht flash you don't want to install flash itself, you want to add flash to your browser
<gchristensen> makefu: maybe builtins.hasAttr
<sphalerite> nikola_i: I think that even if you nix-env -iA nixos.flashplayer it won't work because firefox won't be looking for it
<sphalerite> Which is why you should use the config option as I wrote above
<sphalerite> or use google-chrome which includes flash support out of the box
Kingsquee has quit [(Remote host closed the connection)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] gebner pushed 1 new commit to master: https://git.io/v5zFl
<NixOS_GitHub> nixpkgs/master b2eff3c Gabriel Ebner: eprover: 1.9.1 -> 2.0
NixOS_GitHub has left #nixos []
<nikola_i> sphalerite: any changes to ~/.config/nixpkgs/config.nix are evaluated by nixos-rebuild too, is that correct
<makefu> gchristensen: how can i use it in the nginx virtualHosts submodule?
jellowj has joined #nixos
<sphalerite> nikola_i: no, that file is for per-user config and not system config
<sphalerite> nikola_i: if you want it to apply systemwide, put something like nixpkgs.config = {allowUnfree = true; firefox.enableAdobeFlash = true;}; in your configuration.nix
<gchristensen> makefu: I'm guessing builtins.hasAttr "port" nginx.virtualHosts.<host>, makefu
pie_ has joined #nixos
beemo has joined #nixos
<nikola_i> sphalerite: so modifying ~/.config/nixpkgs/config.nix takes into effect immediately after the file is saved. is there a hook enabled for it
<makefu> i will test this ( with config.services.nginx.virtualHosts.<host>)
<sphalerite> nikola_i: the config change applies to any nix-env invocations after that
MercurialAlchemi has quit [(Ping timeout: 255 seconds)]
<nikola_i> ok. that clears it
ryantrinkle has quit [(Ping timeout: 260 seconds)]
pie__ has joined #nixos
anderslundstedt has joined #nixos
pie_ has quit [(Remote host closed the connection)]
anderslundstedt has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] FRidh created python-unstable (+2 new commits): https://git.io/v5zbY
<NixOS_GitHub> nixpkgs/python-unstable 83d099f mingchuan: pythonPackages.urllib3: Fix buildInputs and meta.description
<NixOS_GitHub> nixpkgs/python-unstable b26ea27 mingchuan: pythonPackages.coveralls: Add missing dependencies to fix build
NixOS_GitHub has left #nixos []
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
vaibhavsagar has joined #nixos
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
anderslundstedt has joined #nixos
iyzsong has joined #nixos
phinxy has quit [(Quit: Leaving)]
anderslundstedt has quit [(Client Quit)]
jellowj has quit [(Ping timeout: 248 seconds)]
anderslundstedt has joined #nixos
jellowj has joined #nixos
anderslundstedt has quit [(Client Quit)]
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 12 new commits to master: https://git.io/v5zAd
<NixOS_GitHub> nixpkgs/master 00a9902 Franz Pletz: at: 3.1.16 -> 3.1.20
<NixOS_GitHub> nixpkgs/master 69549ae Franz Pletz: audio-recorder: 1.9.4 -> 1.9.7
<NixOS_GitHub> nixpkgs/master 1c4d285 Franz Pletz: autoconf-archive: 2016.09.16 -> 2017.03.21
NixOS_GitHub has left #nixos []
gchristensen has left #nixos ["WeeChat 1.7.1"]
gchristensen has joined #nixos
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
oida has joined #nixos
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 15 new commits to release-17.09: https://git.io/v5zx8
<NixOS_GitHub> nixpkgs/release-17.09 73d4729 Gabriel Ebner: eprover: 1.9.1 -> 2.0...
<NixOS_GitHub> nixpkgs/release-17.09 94bfbac Franz Pletz: at: 3.1.16 -> 3.1.20...
<NixOS_GitHub> nixpkgs/release-17.09 5089138 Franz Pletz: audio-recorder: 1.9.4 -> 1.9.7...
NixOS_GitHub has left #nixos []
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
anderslundstedt has joined #nixos
Mateon1 has quit [(Ping timeout: 248 seconds)]
oida_ has quit [(Ping timeout: 260 seconds)]
anderslundstedt has quit [(Client Quit)]
Mateon1 has joined #nixos
anderslundstedt has joined #nixos
anderslundstedt has quit [(Client Quit)]
anderslundstedt has joined #nixos
Guest27768 is now known as katyucha
luigy has joined #nixos
jsgrant has quit [(Quit: jsgrant)]
felixsch__ has joined #nixos
<felixsch__> Is this the right channel to ask about nix installation problem on a non nixos installation?
jsgrant has joined #nixos
<gchristensen> you bet, felixsch__
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] zimbatm pushed 1 new commit to master: https://git.io/v5zpW
<NixOS_GitHub> nixpkgs/master bf491f8 Laure Tavard: cdo: init at 1.7.2 (#22496)
NixOS_GitHub has left #nixos []
jsgrant has quit [(Client Quit)]
pie__ has quit [(Read error: Connection reset by peer)]
pie_ has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] globin closed pull request #29016: linux_chromiumos_3_18: remove kernel due lack of maintainer/breakage (master...chromiumos) https://git.io/v5zQw
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to master: https://git.io/v5zpy
<NixOS_GitHub> nixpkgs/master a096794 Robin Gloster: bwa: 0.7.15 -> 0.7.16a
<NixOS_GitHub> nixpkgs/master 8502d94 Robin Gloster: jenkins: 2.73 -> 2.77
NixOS_GitHub has left #nixos []
<felixsch__> gchristensen: this means? If there is a dedicated channel can you give me the name? #nix seems to be not the case :)
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 4 new commits to release-17.09: https://git.io/v5zpA
<NixOS_GitHub> nixpkgs/release-17.09 e9f8acf Jörg Thalheim: linux_chromiumos_3_18: remove kernel due lack of maintainer/breakage...
<NixOS_GitHub> nixpkgs/release-17.09 f307c3e Robin Gloster: bwa: 0.7.15 -> 0.7.16a...
<NixOS_GitHub> nixpkgs/release-17.09 9e66acf Robin Gloster: jenkins: 2.73 -> 2.77...
NixOS_GitHub has left #nixos []
jsgrant has joined #nixos
takle has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 4 new commits to release-17.03: https://git.io/v5zhT
<NixOS_GitHub> nixpkgs/release-17.03 f758cb8 Vladimír Čunát: libav-11: maintenance 11.8 -> 11.9...
<NixOS_GitHub> nixpkgs/release-17.03 e146e9e Vladimír Čunát: libav: maintenance 11.9 -> 11.10...
<NixOS_GitHub> nixpkgs/release-17.03 f94fa51 Franz Pletz: libav_12: 12 -> 12.1...
NixOS_GitHub has left #nixos []
<goibhniu> felixsch__: this is the right place :D
tmaekawa has joined #nixos
hke has quit [(Ping timeout: 246 seconds)]
pie_ has quit [(Remote host closed the connection)]
pie_ has joined #nixos
reinzelmann has quit [(Quit: Leaving)]
<disasm> yay!!! herqq released and merged my commit!
hke has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] danbst opened pull request #29020: salt: 2016.11.5 -> 2017.7.1, patch fix (master...salt-update) https://git.io/v5zjg
NixOS_GitHub has left #nixos []
Mic92 has quit [(Quit: WeeChat 1.9)]
Mic92 has joined #nixos
jacob has joined #nixos
nikola_i has quit [(Remote host closed the connection)]
jacob is now known as Guest11776
tmaekawa has quit [(Quit: tmaekawa)]
faffolter has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] frontsideair opened pull request #29021: flow: 0.49.1 -> 0.54.0 (master...flow-49-54) https://git.io/v5ge8
NixOS_GitHub has left #nixos []
<disasm> I guess the colloquialism "you bet" in English doesn't translate the best :) Good thing gchristensen didn't say you bet your boots, that really could cause some confusion, lol :)
ThatDocsLady is now known as ThatDocsLady_afk
<gchristensen> disasm: yeah :) oops!
<felixsch__> yep I wasn't sure how to interpret that
<disasm> felixsch__: don't worry, we're a friendly bunch here :)
<disasm> how can we help?
<felixsch__> I know that :) I just wanted to know where to ask. Nah try to install nix on opensuse
<felixsch__> but before I ask, I retry the installation to make sure I didn't miss something :)
<disasm> did g++ used to do some magic pre-version-6 that automatically including std in the namespace? Just came across some failing code that had no "using namespace std" and was using `isnan()` function.
cpennington has joined #nixos
Mic92 has quit [(Quit: WeeChat 1.9)]
Mic92 has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/v5gvR
<NixOS_GitHub> nixpkgs/master 4151e2f Samuel Leathers: herqq: 1.0.0 -> 2.1.0
NixOS_GitHub has left #nixos []
Mic92 has quit [(Quit: WeeChat 1.9)]
Mic92 has joined #nixos
freeman42y has joined #nixos
free_beard has joined #nixos
catern has quit [(Ping timeout: 240 seconds)]
freeman42x has quit [(Ping timeout: 246 seconds)]
Mic92 has quit [(Client Quit)]
Mic92 has joined #nixos
catern has joined #nixos
<globin> disasm: probably a C header was included in an old version of the C++ headers defining isnan
<disasm> ah, that makes sense
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.09: https://git.io/v5gUe
<NixOS_GitHub> nixpkgs/release-17.09 9e50f29 Samuel Leathers: herqq: 1.0.0 -> 2.1.0...
NixOS_GitHub has left #nixos []
<free_beard> Hi, I'm planning to join the release sprint in Amsterdam on sunday. Would you recommend any prep other than installing nixos in a vbox guest and playing with it there? (I mean, should I follow some other resources other than the manual?)
<free_beard> I'm a newbie
pie_ has quit [(Ping timeout: 240 seconds)]
leat has quit [(Ping timeout: 248 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5gUx
<NixOS_GitHub> nixpkgs/master 1db53fb José Luis Lafuente: hyper: 1.3.3 -> 1.4.3
<NixOS_GitHub> nixpkgs/master 9a9629e Jörg Thalheim: Merge pull request #29018 from jlesquembre/hyper...
NixOS_GitHub has left #nixos []
goibhniu1 has joined #nixos
goibhniu has quit [(Ping timeout: 260 seconds)]
brodul has joined #nixos
<makefu> free_beard: try to package a software of your choice in nixpkgs will be a fantastic preparation for the sprint i guess
<free_beard> makefu: thanks, i'll do that
<makefu> if you have `a lot time`, check out the nix pills ( https://nixos.org/nixos/nix-pills/index.html ), if you have `massive amounts of time` read the manuals of nixpkgs, nix and nixOS
odi has quit [(Ping timeout: 246 seconds)]
<brodul> is there a way to inherit a list of functions as a paramether to anotherone
<brodul> the inherit buildDeps is not working
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm pushed 5 new commits to master: https://git.io/v5gkk
<NixOS_GitHub> nixpkgs/master 344fbb5 SLNOS: firefoxPackages: add `extraConfigureFlags` to common builder, move `--disable-loop` flag to tor-browser expression
<NixOS_GitHub> nixpkgs/master a681afb SLNOS: firefoxPackages: add `extraMakeFlags` to common builder, fix official branding handling
<NixOS_GitHub> nixpkgs/master 5133414 SLNOS: firefoxPackages: tor-browser: reorganize expression
NixOS_GitHub has left #nixos []
eacameron has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm pushed 5 new commits to master: https://git.io/v5gkO
<NixOS_GitHub> nixpkgs/master 4216546 Michael Alan Dorman: elpa-packages: 2017-09-04
<NixOS_GitHub> nixpkgs/master e010d2d Michael Alan Dorman: org-packages: 2017-09-04
<NixOS_GitHub> nixpkgs/master cb04086 Michael Alan Dorman: melpa-stable-packages: 2017-09-04
NixOS_GitHub has left #nixos []
nikola_i has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #28904: mmake: init at 1.2.0 (master...mmake-package) https://git.io/v50Zf
NixOS_GitHub has left #nixos []
sellout- has quit [(Ping timeout: 240 seconds)]
mudri has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #29021: flow: 0.49.1 -> 0.54.0 (master...flow-49-54) https://git.io/v5ge8
NixOS_GitHub has left #nixos []
ona has quit [(Quit: ...)]
<domenkozar> brodul: what's the error?
<domenkozar> what's the contents of default.nix
sellout- has joined #nixos
<domenkozar> brb lunch
griff_ has quit [(Quit: griff_)]
Sonarpulse has quit [(Ping timeout: 246 seconds)]
<copumpkin> is there a more restricted allowUnfree?
<copumpkin> where I whitelist the packages I want to allow
<brodul> domenkozar: I posted the error into the gist. I know that current syntax does not work. Just wondering if there is a function that would transform a list e.g. [ perl ] into a set {perl = perl;} so that the pattern works
<brodul> *pattern maching
<Mic92> copumpkin: you could create a seperate package set and export NIXPKGS_ALLOW_UNFREE, when using nix-env. I don't know a better option.
<copumpkin> not using nix-env unfortunately
<copumpkin> it's part of buildInputs / nix-shell
<copumpkin> I guess I could write some sort of package modifier that uses overrideAttrs to override meta.license to a dud value
<Mic92> copumpkin: just found allowUnfreePredicate = (x: pkgs.lib.hasPrefix "flashplayer-" x.name);
<Mic92> copumpkin: see pkgs/stdenv/generic/check-meta.nix
<copumpkin> aha
<copumpkin> great, thanks!
<tilpner> How do I work interactively and with nix-build on the same directory? If I use src = ./.;, it tries to import build artifacts into the store. filterSource doesn't seem to help, and I can't figure out how to use fetchgitLocal
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5gmq
<NixOS_GitHub> nixpkgs/master a8aef18 Lukas Werling: x2goclient: 4.0.5.1 -> 4.1.0.0...
<NixOS_GitHub> nixpkgs/master e342715 Jörg Thalheim: Merge pull request #28983 from lluchs/x2goclient-4.1.0.0...
NixOS_GitHub has left #nixos []
pie_ has joined #nixos
odi has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.09: https://git.io/v5gmF
<NixOS_GitHub> nixpkgs/release-17.09 eba2aed Lukas Werling: x2goclient: 4.0.5.1 -> 4.1.0.0...
NixOS_GitHub has left #nixos []
bennofs has joined #nixos
leat has joined #nixos
<manveru> tilpner: what's your filterSource look like?
<manveru> mine looks like this :)
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] disassembler opened pull request #29022: stunt rally: fixing build with gcc6 (master...stuntrally) https://git.io/v5gYd
NixOS_GitHub has left #nixos []
<tilpner> Can't you just use map toString there?
jellowj has quit [(Ping timeout: 246 seconds)]
<manveru> it does, i assign it to ignore to make it easier to understand
<manveru> filterSource works recursively, so if you ignore a directory, it won't use anything within it either
<tilpner> Let me try that. Although ideally I wouldn't repeat .gitignore in my .nix
ison111 has joined #nixos
<manveru> it's not quite as nice as just using a .gitiginore, but there's no "easy" way to do that
<manveru> you can see https://github.com/numtide/nix-gitignore for that
jellowj has joined #nixos
<tilpner> Hmm, I thought it would be easy, by just cloning the local repository. That would put it into a clean state, and ignore anything in .gitignore
<tilpner> That's why I tried to use fetchgitLocal
<manveru> i haven't tried that approach yet... but that would require you to commit every time before building?
<tilpner> Yes, it's not perfect either :/
<tilpner> (Or working atm)
<manveru> hm actually it doesn't
<manveru> it creates a new repo based on the current one
MercurialAlchemi has joined #nixos
<manveru> how did you try to use it?
<tilpner> manveru - I tried your approach, it seems to be working. You may want to look at the changes, it's a little shorter: tx0.co/YnYZ
<tilpner> (But I have a simple ignore list, maybe it's not equivalent in all cases?)
FRidh has quit [(Quit: Konversation terminated!)]
<manveru> fetchgitLocal is strange indeed
<manveru> i'll see if i can get it to work
fractal is now known as _fractal_
<manveru> not gonna be easy
<disasm> there's a trade-off, testing games after fixing the build is a whole lot more fun, but it takes a whole lot longer to build and the laptop gets a lot hotter :)
<sphalerite> brodul: add pkgs.callPackage before goFish on line 7
<sphalerite> brodul: pkgs.callPackage fills in any arguments for the function that are available in nixpkgs. The problem isn't your `inherit buildDeps` but that it's missing all the necessary attributes
<sphalerite> in fact then you should be able to replace {inherit buildDeps;} with {}
<sphalerite> but {inherit buildDeps;} is equivalent to {buildDeps = buildDeps;} so what you're doing in the snippet you pasted is passing a set containing just one attribute to the expression in default.nix
<brodul> sphalerite: that works great
<brodul> tnx
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5gZ5
<NixOS_GitHub> nixpkgs/master 7a96ec9 Michel Kuhlmann: saga: 2.3.1 -> 5.0.0
<NixOS_GitHub> nixpkgs/master 5d848f0 Jörg Thalheim: Merge pull request #29013 from michelk/saga...
NixOS_GitHub has left #nixos []
<sphalerite> np! :)
<domenkozar> or just do: goFish buildDeps
<domenkozar> to pas { stdenv = .. } instead of { buildsde = { stdenv = .. }; }
<domenkozar> pass*
<mpickering> Is the haskell package set loosely based on stackage at all? or is it just the latest version of all packages
<bennofs> mpickering: it is based on stackage
<sphalerite> domenkozar: no, buildDeps is a list so that won't work
<mpickering> verses a lts or nightly?
ertes-w has quit [(Ping timeout: 240 seconds)]
leat has quit [(Quit: leat)]
nikola_i has quit [(Quit: Leaving)]
Sonarpulse has joined #nixos
ntc has quit [(Ping timeout: 248 seconds)]
civodul has quit [(Remote host closed the connection)]
faffolter has quit [(Ping timeout: 240 seconds)]
vaibhavsagar has quit [(Ping timeout: 248 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #28970: lenmus: fixing build with gcc6 (master...lenmus) https://git.io/v5uqu
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/v5glj
<NixOS_GitHub> nixpkgs/master bd540d9 Samuel Leathers: lenmus: fixing build with gcc6
<NixOS_GitHub> nixpkgs/master 47ec957 Joachim F: Merge pull request #28970 from disassembler/lenmus...
NixOS_GitHub has left #nixos []
erictapen has quit [(Ping timeout: 252 seconds)]
jmeredith has joined #nixos
ison111 has quit [(Ping timeout: 248 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5g47
<NixOS_GitHub> nixpkgs/master 2134b92 Samuel Leathers: stunt rally: fixing build with gcc6
<NixOS_GitHub> nixpkgs/master 1791b43 Jörg Thalheim: Merge pull request #29022 from disassembler/stuntrally...
NixOS_GitHub has left #nixos []
odi has quit [(Ping timeout: 248 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.09: https://git.io/v5gBL
<NixOS_GitHub> nixpkgs/release-17.09 b5f5583 Samuel Leathers: stunt rally: fixing build with gcc6...
NixOS_GitHub has left #nixos []
leat has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v5gB4
<NixOS_GitHub> nixpkgs/master 656ec9d Tim Steinbach: Add basic kernel tests
<NixOS_GitHub> nixpkgs/master 3558ed8 Jörg Thalheim: Merge pull request #28988 from NeQuissimus/tests_kernel_basic...
NixOS_GitHub has left #nixos []
anton_ has quit [(Quit: No Ping reply in 180 seconds.)]
MercurialAlchemi has quit [(Ping timeout: 240 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 3 new commits to master: https://git.io/v5gBP
<NixOS_GitHub> nixpkgs/master 36ee9dc Tim Steinbach: py3status: 3.0 -> 3.6
<NixOS_GitHub> nixpkgs/master ce38725 Tim Steinbach: i3: 4.13 -> 4.14
<NixOS_GitHub> nixpkgs/master 69a9e87 Jörg Thalheim: Merge pull request #28976 from NeQuissimus/i3_4_14...
NixOS_GitHub has left #nixos []
anton_ has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 opened pull request #29023: misc pkgs: Reorganize dependencies ahead of #26805 (staging...deps-reorg) https://git.io/v5gBQ
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] jammerful opened pull request #29024: gerrit: init at 2.14.3 (master...gerrit) https://git.io/v5gRT
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #28971: libctemplate: remove 2.2 (master...libctemplate) https://git.io/v5um6
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.09: https://git.io/v5gR4
<NixOS_GitHub> nixpkgs/release-17.09 2efe24c Samuel Leathers: libctemplate: remove 2.2...
NixOS_GitHub has left #nixos []
jsgrant_ has quit [(Remote host closed the connection)]
jsgrant_ has joined #nixos
erasmas has joined #nixos
jellowj has quit [(Ping timeout: 260 seconds)]
free_beard has quit [(Quit: Page closed)]
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.03-small advanced to https://github.com/NixOS/nixpkgs/commit/a95a8a25d1 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-17.03-small)
nix-gsc-io`bot has quit [(Client Quit)]
gnuhurd has quit [(Remote host closed the connection)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 6 new commits to master: https://git.io/v5gEe
<NixOS_GitHub> nixpkgs/master dbf6e36 Franz Pletz: postgresql9{1,2}: remove, not supported anymore...
<NixOS_GitHub> nixpkgs/master 8b930e7 Franz Pletz: postgresql93: 9.3.17 -> 9.3.19
<NixOS_GitHub> nixpkgs/master df0b19a Franz Pletz: postgresql94: 9.4.12 -> 9.4.14
NixOS_GitHub has left #nixos []
Filystyn has joined #nixos
Filystyn has quit [(Changing host)]
Filystyn has joined #nixos
sellout-1 has joined #nixos
mudri has quit [(Quit: WeeChat 1.9)]
sellout- has quit [(Ping timeout: 260 seconds)]
__Sander__ has quit [(Quit: Konversation terminated!)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 21 new commits to release-17.09: https://git.io/v5gEp
<NixOS_GitHub> nixpkgs/release-17.09 431f24e José Luis Lafuente: hyper: 1.3.3 -> 1.4.3...
<NixOS_GitHub> nixpkgs/release-17.09 886ab96 SLNOS: firefoxPackages: add `extraConfigureFlags` to common builder, move `--disable-loop` flag to tor-browser expression...
<NixOS_GitHub> nixpkgs/release-17.09 f7d0f71 SLNOS: firefoxPackages: add `extraMakeFlags` to common builder, fix official branding handling...
NixOS_GitHub has left #nixos []
ryantrinkle has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/v5guq
<NixOS_GitHub> nixpkgs/master 3d8d9aa Piotr Bogdan: caps: fix build with gcc6
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to release-17.09: https://git.io/v5gus
<NixOS_GitHub> nixpkgs/release-17.09 6ba56fe Piotr Bogdan: caps: fix build with gcc6...
NixOS_GitHub has left #nixos []
mrkgnao has quit [(Quit: WeeChat 1.7.1)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/v5gzJ
<NixOS_GitHub> nixpkgs/master 59bed53 Franz Pletz: postgresql9{1,2}: fix evaluation
NixOS_GitHub has left #nixos []
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/eba2aed324 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] dotlambda opened pull request #29025: seafile-client: add optional Shibboleth support (master...seafile-client) https://git.io/v5gzI
NixOS_GitHub has left #nixos []
anton_ has quit [(Ping timeout: 246 seconds)]
anton_ has joined #nixos
<andrewrk> anyone solved this before? Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock
<andrewrk> my user is in the docker group and I have services.virtualisation.docker.enable = true
<andrewrk> it works with sudo
<avn> andrewrk: you need re-login after switch
mudri has joined #nixos
<andrewrk> re-login to what?
<andrewrk> I just rebooted my computer
<avn> andrewrk: ok, reboot should be enough.
<avn> does `id` command show you in docker group?
digitus has joined #nixos
thaega has quit [(Remote host closed the connection)]
thaega has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 2 new commits to release-17.09: https://git.io/v5gzx
<NixOS_GitHub> nixpkgs/release-17.09 bc36e91 Franz Pletz: postgresql9{1,2}: fix evaluation...
<NixOS_GitHub> nixpkgs/release-17.09 a5a6cd0 Franz Pletz: postgresql92: remove last references...
NixOS_GitHub has left #nixos []
<andrewrk> avn, hmm no it does not
thaega has quit [(Remote host closed the connection)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #28895: fontconfig: fix substitutions option (master...fontconfig-fix-substitutions) https://git.io/v50TN
NixOS_GitHub has left #nixos []
<andrewrk> also when I first boot, it's not running even though I have services.virtualisation.docker.enableOnBoot = true
thaega has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/v5ggT
<NixOS_GitHub> nixpkgs/master 1bed477 Franz Pletz: postgresql92: remove last references
NixOS_GitHub has left #nixos []
ibor has joined #nixos
vengefulpickle has joined #nixos
<andrewrk> extraGroups = [ "wheel" "networkmanager" "video" "power" "vboxusers" "audio" "docker"];
dieggsy has joined #nixos
endformationage has joined #nixos
<tilpner> Does "grep docker /etc/group" list your user?
<andrewrk> avn, when I boot, docker isn't even a command I can run. if I do rebuild switch without changing anything, then it becomes a command I can call
<andrewrk> tilpner, yes
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] dotlambda closed pull request #26965: pythonPackages.py3status: 3.0 -> 3.5 (master...py3status) https://git.io/vQlMh
NixOS_GitHub has left #nixos []
cpennington has quit [(Ping timeout: 240 seconds)]
<tilpner> But "id" or "groups" do not?
<andrewrk> tilpner, correct
<disasm> andrewrk: it seems like either a) your rebuild before reboot failed or b) you didn't boot the latest generation. If docker command didn't exist and rebuild installed it, I'd guess logout/login should get correct groups now.
<andrewrk> this is on 17.03.1775.56da88a298 (Gorilla) btw
vengefulpickle has quit [(Ping timeout: 240 seconds)]
<andrewrk> ok let me try rebooting again.
<andrewrk> same problem
acertain has joined #nixos
<tilpner> disasm - If /etc/group is correct, doesn't that mean they booted a correct generation?
<andrewrk> this is definitely the latest generation
<clever> or he re-ran nixos-rebuild after logging in
<ToxicFrog> It occurs to me that nixpkgs could really use something like netKAN that automatically updates derivations when new versions of the package are released, and/or some easier way for users to say "download and install <version>" and pass the version number to the derivation
<tilpner> clever - True. Did you, andrewrk?
<clever> 2017-09-05 13:23:42 < andrewrk> avn, when I boot, docker isn't even a command I can run. if I do rebuild switch without changing anything, then it becomes a command I can call
<andrewrk> yes. check the paste ^
<simpson> ToxicFrog: I would like this idea more if packages came with useful test suites more often.
<simpson> But unfortunately it's very hard to know whether upgrading one package will cause dependents to break.
<clever> andrewrk: what does /run/current-system point to, before and after a reboot?
<andrewrk> clever, after is lrwxrwxrwx 1 root root 82 Sep 5 12:29 current-system -> /nix/store/0n1ycdkyjknnl7my6hvy0s7q2h7gs2g2-nixos-system-xps-17.03.1775.56da88a298. I'll reboot again...
<disasm> sounds to me like boot loader is defaulting to a previous generation, maybe autosave with grub or something is enabled.
<clever> or /boot isnt even mounted
<ToxicFrog> simpson: fair point
gnuhurd has joined #nixos
<ToxicFrog> I mostly run into this with "leaf" packages like youtube-dl
<andrewrk> clever, beforei s lrwxrwxrwx 1 root root 82 Sep 5 12:31 current-system -> /nix/store/5wgy2j38h5yay7210v14dcpffkapd7wp-nixos-system-xps-17.03.1123.4a7a03913d
<andrewrk> brb
iyzsong has quit [(Ping timeout: 240 seconds)]
<clever> andrewrk: is /boot mounted?
takle has quit [(Read error: No route to host)]
<disasm> clever: ah, yeah, that would do it too!
takle has joined #nixos
ibor has quit [(Ping timeout: 246 seconds)]
<ToxicFrog> Hmm
<ToxicFrog> If I add a new overlay, so I need to nixos-rebuild for nix-shell to respect it?
<clever> ToxicFrog: nix-shell will never read configuration.nix
takle has quit [(Read error: Connection reset by peer)]
takle has joined #nixos
<ToxicFrog> Aah. This explains why testing overlays has been so confusing in the past.
ambro718 has joined #nixos
<ToxicFrog> Ok, new question -- say I have the default.nix for a package in nixpkgs. I've made some modifications to it and want to build it with those modifications and run it, presumably using nix-shell. I don't have a complete nixpkgs checkout. How do I get nix-shell to call it with the right arguments?
<clever> ToxicFrog: for nix-shell, nix-build, and nix-env, it will obey ~/.config/nixpkgs/overlays and <nixpkgs-overlays>
<clever> oh, thats simple
<clever> nix-shell -E 'with import <nixpkgs> {}; callPackage ./. {}'
<ToxicFrog> Ok.
<ToxicFrog> I'm going to write an alias for that, because there is no way I'm going to remember that next time I want to do this.
<clever> ive done it so much that i can type it with my eyes closed, lol
<ToxicFrog> Hmm.
<ToxicFrog> "Called without required argument buildPythonApplication"
<clever> ah, you want pythonPackages.callPackage
<clever> you have to load it the same way all-packages.nix loaded it
hc_ has joined #nixos
<grw> hi, does anyone have any ideas why this build fails: https://hydra.satanic.link/build/1196/nixlog/4
radvendii has joined #nixos
<grw> the build succeeds on x86_64 and armv7l, but cant find libnm on aarch64
MinceR has quit [(Ping timeout: 248 seconds)]
<grw> actually, not sure about armv7, butccccccgndrglbevtcujtkugjnijdunvghbjibjrhd
<clever> grw: the error says pkg-config cant be found
hc has quit [(Ping timeout: 240 seconds)]
MinceR has joined #nixos
<grw> hm, i see
<clever> grw: by chance is this build slave on nfs?
<grw> ext4
<clever> not the same issue i had then
<clever> double-check that pkgconfig is in the inputs for networkmanager-iodine
<grw> didnt think you could put /nix/store on nfs
<ToxicFrog> clever: that dies with "attribute 'callPackage' missing and I'm now trying to track down how it's called. >.<
<clever> nix-repl> pythonPackages.callPackage
<clever> «lambda»
<clever> ToxicFrog: did you spell it all correctly?
<clever> grw: yeah, it is present
hc has joined #nixos
hc_ has quit [(Ping timeout: 248 seconds)]
<ToxicFrog> $ nix-shell -E 'with import <nixpkgs> {}; pythonPackages.callPackage ./youtube-dl.nix {}'
<ToxicFrog> error: attribute ‘callPackage’ missing, at (string):1:27
<ToxicFrog> I've also tried it with python27Packages
<clever> /home/clever/apps/nixpkgs/pkgs/top-level/python-packages.nix: youtube-dl = callPackage ../tools/misc/youtube-dl {};
<ToxicFrog> Yeah, I found that eventually
<sphalerite> +1 I also don't have pythonPackages.callPackage
<ToxicFrog> Maybe I should just write an overlay and put it in systemPackages
<sphalerite> it exists in nixos-unstable but not in nixos-17.03
<clever> odd, its present in my nix-repl
<ToxicFrog> I'm on 17.03, so that would explain it
<clever> and its missing in a recent-ish checkout of master
hc has quit [(Ping timeout: 240 seconds)]
<sphalerite> 18bad38d3d928b7dd9ee09a38249dbeb217d34d1
hc has joined #nixos
<copumpkin> staging is looking pretty b0rked right now
<sphalerite> git bisect is awesome
<domenkozar> we should really call it mass-rebuild instead of staging
<copumpkin> oh, it's marked as "cancelled by user"
<copumpkin> if only it recorded who cancelled it and why
<sphalerite> agreed domenkozar
<ToxicFrog> If I look at python-packages in 17.03, though, it's still using callPackage, so....I have no idea
* ToxicFrog goes to read up on overlays
<sphalerite> ToxicFrog: it's just not exposed in 17.03
<sphalerite> it's in the let binding but not in the set that it evaluates to
<clever> ToxicFrog: i think an overlay would still have the same problem
<clever> ToxicFrog: the overlay still has to load it with callPackage
<sphalerite> so it can be used in python-packages.nix but not outside it
<sphalerite> yep, what clever said
mudri` has joined #nixos
<sphalerite> if you need to use callPackage, you can just redefine it outside I think — `let callPackage = pkgs.newScope pythonPackages;`
cpennington has joined #nixos
radvendii has quit [(Ping timeout: 240 seconds)]
hc_ has joined #nixos
<ToxicFrog> clever: overlay is working just fine though
<ToxicFrog> using super.youtube-dl.overrideAttrs
<clever> working fine, or silently having zero effect?
<clever> you can do the same thing with nix-shell
<clever> nix-shell -E 'with import <nixpkgs> {}; youtube-dl.overrideAttrs ... '
hc has quit [(Ping timeout: 260 seconds)]
<ToxicFrog> Well, it's downloading the new version very noisily and is now building it
mudri has quit [(Ping timeout: 240 seconds)]
goibhniu1 has quit [(Ping timeout: 240 seconds)]
takle has quit [(Remote host closed the connection)]
takle has joined #nixos
hc has joined #nixos
hc_ has quit [(Ping timeout: 240 seconds)]
aloiscochard has quit [(Quit: Connection closed for inactivity)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] WilliButz opened pull request #29027: grafana: 4.3.2 -> 4.5.0-beta1 (master...packageUpdates) https://git.io/v5gr9
NixOS_GitHub has left #nixos []
takle has quit [(Ping timeout: 260 seconds)]
<clever> ToxicFrog: also, nix-shell -A and -E give you an environment suitable for building something, not using it
<ToxicFrog> Aah. So nix-shell was not in fact the right answer to my original question anyways :/
erictapen has joined #nixos
erictapen has quit [(Remote host closed the connection)]
<clever> ToxicFrog: if you just want to build the thing in that overlay, run nix-build against https://gist.github.com/cleverca22/3dbc7ec96e1d5dc16ad7ee7111f18c80
erictapen has joined #nixos
<clever> if you want to use it in a nix shell, create a second derivation, that depends on the new youtube-dl
sellout-1 has quit [(Quit: Leaving.)]
<woffs> or nix-shell -p ?
<clever> nix-shell -p can only load from nixpkgs
<ToxicFrog> The root problem I was trying to solve was "I want to download things that require a version of youtube-dl that isn't half a year old"
<ToxicFrog> Writing an overlay into ~/.config/nixpkgs/overlays and running nix-shell -p youtube-dl has solved this.
<sphalerite> clever: not really. nix-shell -p 'import ./stuff.nix'
<clever> you should also be able to run nix-env -i against the above gist
<clever> sphalerite: oh right, i forget about that
<sphalerite> youtube-dl updates should be backported to stable versions IMO
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #29024: gerrit: init at 2.14.3 (master...gerrit) https://git.io/v5gRT
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/v5gKw
<NixOS_GitHub> nixpkgs/master 5113be5 Joachim Fasting: tor-browser-bundle-bin: 7.0.4 -> 7.0.5
NixOS_GitHub has left #nixos []
<andrewrk> clever, yes
<andrewrk> /boot is mounted
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to master: https://git.io/v5gKj
<NixOS_GitHub> nixpkgs/master abdd0bb Jörg Thalheim: gerrit: avoid copy of war file in build
NixOS_GitHub has left #nixos []
<clever> andrewrk: double-check your partition list, do you have any extra boot partitions by mistake?
<andrewrk> clever, I only have /dev/sda1 which is / and /dev/sda2 which is the EFI partition
<clever> andrewrk: can you gist the output of: df -h ; ls -ltrhR /boot/
<clever> sda1 is not mounted
<clever> sda2 *, *doh*
radvendii has joined #nixos
<andrewrk> hmm I'm confused because this was working before, all I did is nixos-
<clever> andrewrk: you must mount sda2 to /boot and re-run nixos-generate-config to fix hardware-configuration.nix
<andrewrk> nixos-rebuild switch --upgrade
<andrewrk> ok
<clever> andrewrk: how old is this install?, how often do you change configuration.nix?
<andrewrk> the install is maybe 6 months old, stable channel
<clever> how often do you change configuration.nix?
<andrewrk> never
<clever> then this has likely been broken since you first installed
<andrewrk> oh
<clever> and you never noticed, because you never changed configuration.nix
<andrewrk> yeah that's possible
<andrewrk> maybe I changed it 4 times since there are 4 generations in grub
<clever> those can also come from just doing nixos-install 4 times
<andrewrk> I have stuff in /boot
<andrewrk> how can I mount?
sellout- has joined #nixos
<clever> mount /dev/sda2 /boot
<andrewrk> oh, I thought it only worked on empty directories
<clever> only zfs does that
<clever> but you may want to clear the old boot out and chmod 0 /boot
<clever> so it fails in the future, rather then silently claiming it worked
<andrewrk> smart. I'll do that
<andrewrk> clever, thanks for the help. everything is fixed
dieggsy has quit [(Read error: Connection reset by peer)]
<andrewrk> and there were something like 12 extra generations I didn't see before
<clever> every nixos-rebuild you have done, that it undid
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] dotlambda closed pull request #29025: seafile-client: add optional Shibboleth support (master...seafile-client) https://git.io/v5gzI
NixOS_GitHub has left #nixos []
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/2efe24ca13 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] dotlambda reopened pull request #29025: seafile-client: add optional Shibboleth support (master...seafile-client) https://git.io/v5gzI
NixOS_GitHub has left #nixos []
freeman42x[nix] has joined #nixos
Filystyn has quit [(Ping timeout: 260 seconds)]
Ivanych has joined #nixos
Ivanych has quit [(Client Quit)]
Ivanych has joined #nixos
luigy has left #nixos []
Filystyn has joined #nixos
Filystyn has quit [(Changing host)]
Filystyn has joined #nixos
peacememories has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 opened pull request #29028: misc pkgs: Clean up cross (master...cross-cleanup) https://git.io/v5gXl
NixOS_GitHub has left #nixos []
<tokudan[m]> after updating to 17.09beta43.0fd7ef61b2 I've got a strange phenomen in the terminal: some updates seem to be put out of place. best way to reproduce is in htop. after starting it, all processes are correctly listed in the table, just the one process that is under the selection bar is slightly off. when i then move the selection bar down, more processes are displayed wrong. can someone else reproduce this issue?
<tokudan[m]> terminals i tried are gnome-terminal and alacritty
<tokudan[m]> both suffer from the same issue
freeman42x[nix] has quit [(Quit: Leaving)]
<ToxicFrog> tokudan[m]: this is a known issue with a recent release of terminfo
<ToxicFrog> It doesn't affect all TERMs, so try TERM=linux or TERM=screen-256color
<tokudan[m]> ah, good to know. thanks
<ToxicFrog> (it hit SUSE as well)
<tokudan[m]> yep, when i set TERM=screen-256color it's working fine
<tokudan[m]> ToxicFrog: thanks!
<ToxicFrog> You're welcome! I hit this on my (SUSE-based) laptop just last week and had to do some rummaging to fix it.
<ToxicFrog> Not sure if the plan for Nix is to wait for upstream to fix it, or patch terminfo in nixpkgs.
<tokudan[m]> i'll open a bug on nixos... would be bad if that entered 17.09
<ToxicFrog> Thanks.
ixxie has joined #nixos
<globin> ah it's terminfo? we couldn't find the package that caused it
<ToxicFrog> globin: appears to be; initial suspicion pointed at curses or rxvt, but someone on the SUSE bugtracker isolated it to terminfo.
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 closed pull request #29028: misc pkgs: Clean up cross (master...cross-cleanup) https://git.io/v5gXl
NixOS_GitHub has left #nixos []
hotfuzz has quit [(Quit: WeeChat 1.7.1)]
<tokudan[m]> github is acting up, some stylesheets refuse to load for me
takle has joined #nixos
tmaekawa has joined #nixos
takle has quit [(Remote host closed the connection)]
takle has joined #nixos
<globin> tokudan[m]: I had looked at curses
<globin> tokudan[m]: ack for me too
sellout- has quit [(Quit: Leaving.)]
sellout- has joined #nixos
<tokudan[m]> they seem to be aware of the issues
sellout- has quit [(Client Quit)]
sellout- has joined #nixos
sellout- has quit [(Client Quit)]
sellout- has joined #nixos
sellout- has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 pushed 4 new commits to release-17.09: https://git.io/v5gMd
<NixOS_GitHub> nixpkgs/release-17.09 d0fc958 John Ericson: zile: help2man is no longer likely to cause problems...
<NixOS_GitHub> nixpkgs/release-17.09 40ada2d John Ericson: elinks: Simplify cross, no `crossAttrs` or `crossConfig`...
<NixOS_GitHub> nixpkgs/release-17.09 6bb6587 John Ericson: links 2: Simplify cross, no `crossAttrs` or `crossConfig`...
NixOS_GitHub has left #nixos []
recvec has joined #nixos
peacememories has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
johnsonav has joined #nixos
freeman42x[nix] has joined #nixos
peacememories has joined #nixos
recvec has quit [(Remote host closed the connection)]
recvec has joined #nixos
radvendii has quit [(Ping timeout: 248 seconds)]
FRidh has joined #nixos
mudri` is now known as mudri
<freeman42x[nix]> do I need to install GTK for this to work? https://paste2.org/UdNUUgCv
<freeman42x[nix]> I assume the proper way to install it would be using wine and not mono
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 2 new commits to staging: https://git.io/v5gDo
<NixOS_GitHub> nixpkgs/staging bbeeee2 Franz Pletz: Merge remote-tracking branch 'origin/master' into staging
<NixOS_GitHub> nixpkgs/staging fea02e3 Franz Pletz: ncurses: 6.0-20170729 -> 6.0-20170902...
NixOS_GitHub has left #nixos []
zennist has joined #nixos
<fpletz> tokudan[m]: globin: the ncurses bump above fixes the xterm terminfo issue for me
<fpletz> I was looking if debian has a patch but they bumped it to that version :)
<zennist> is there a syntax guide for nix the language somewhere? i'm pretty frustrated there isn't a straightfoward reference guide for what the syntax is
<tokudan[m]> oh?
digitus has quit [(Read error: Connection reset by peer)]
<tokudan[m]> then I'll retry with a new update before opening the issue
peacememories has quit [(Client Quit)]
<fpletz> tokudan[m]: I was testing with htop (that was a short build)
<LnL> zennist: I would recommend https://medium.com/@MrJamesFisher/nix-by-example-a0063a1a4c55 to start
digitus has joined #nixos
<zennist> e.g., I was trying to figure out if there is a way to shorten the syntax such as 'myfun { pkgs = pkgs, arg = arg, anotherArg = anotherArg }' i.e., I have a number of variables in scope and just want to pass them as they are to the function myfun
<tokudan[m]> fpletz: has the update hit the channel already or is it only available in nixpkgs/release-17.03?
erictapen has quit [(Ping timeout: 260 seconds)]
<zennist> LnL: yes saw that one, it's pretty good but it's like a tutorial; can't find an answer to my question
[0x4A6F] has joined #nixos
<fpletz> tokudan[m]: the update is currently on staging
<fpletz> is 17.03 affected by this? \o/
<tokudan[m]> no, 17.09 i meant
<fpletz> phew :)
<tokudan[m]> i guess i have to figure out what staging is first...
<LnL> zennist: there's also https://nixos.org/nixos/nix-pills/ for some more advanced stuff
<fpletz> not yet, this is a pretty big rebuild
Mateon1 has left #nixos []
<zennist> i'm familiar with javascript's destruction syntax e.g., '{ a, b, c} = myobj'; and seems like you can't do that with nix
<LnL> zennist: but for your question, you can use myfun { inherit pkgs arg anotherArg; }
<zennist> LnL: awesome that's what I need :)
<zennist> but I don't understand given why you can't do destruction in a 'let', you can do that with function input
<LnL> that works both in a let and an attrset
<zennist> i.e., I see functions defined as '{ a, b, c}: ... '
peacememories has joined #nixos
<LnL> you can do the same with inherit, let inherit (attrs) a b c; in a + b + c
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/v5gyw
<NixOS_GitHub> nixpkgs/master 84ec7ef Franz Pletz: file: 5.31 -> 5.32 for CVE-2017-1000249
NixOS_GitHub has left #nixos []
peacememories has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to release-17.09: https://git.io/v5gyb
<NixOS_GitHub> nixpkgs/release-17.09 6d8a5d7 Franz Pletz: file: 5.31 -> 5.32 for CVE-2017-1000249...
NixOS_GitHub has left #nixos []
<recvec> hello everyone, i got a little problem running steam after freshly installing nixos. terminal message when try to run steam: https://pastebin.com/AMCRb7NB anyone got an idea?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 3 new commits to release-17.03: https://git.io/v5gSn
<NixOS_GitHub> nixpkgs/release-17.03 ffbf54e Renaud: file: 5.28 -> 5.30...
<NixOS_GitHub> nixpkgs/release-17.03 4ccb207 Tuomas Tynkkynen: file: 5.30 -> 5.31...
<NixOS_GitHub> nixpkgs/release-17.03 8b517eb Franz Pletz: file: 5.31 -> 5.32 for CVE-2017-1000249...
NixOS_GitHub has left #nixos []
<tilpner> nixos 18.03?
odi has joined #nixos
<tilpner> Are you running master, or how does that happen?
<recvec> unstable
bennofs has quit [(Ping timeout: 252 seconds)]
<recvec> oh i missed this issue... i gonna give it i try, thank you
radvendii has joined #nixos
hotfuzz has joined #nixos
radvendii has quit [(Ping timeout: 255 seconds)]
freeman42x[nix] has quit [(Quit: Leaving)]
gnuhurd has quit [(Remote host closed the connection)]
<recvec> thank you tilpner steam running again. have a nice evening/day everyone
recvec has left #nixos ["Leaving"]
peacememories has joined #nixos
dieggsy has joined #nixos
pie_ has quit [(Ping timeout: 240 seconds)]
drakonis has joined #nixos
gnuhurd has joined #nixos
Filystyn has quit [(Ping timeout: 240 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nix] edolstra pushed 2 new commits to master: https://git.io/v5g7s
<NixOS_GitHub> nix/master b932ea5 Eelco Dolstra: GC: Don't delete own temproots file...
<NixOS_GitHub> nix/master 0b606aa Eelco Dolstra: Add automatic garbage collection...
NixOS_GitHub has left #nixos []
<simpson> Oh my.
ryantrinkle has quit [(Ping timeout: 248 seconds)]
<sphalerite> hahaha
Filystyn has joined #nixos
<zennist> is there a way to compose two functions in nix?
<zennist> e.g., (.) in haskell
peacememories has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<simpson> I bet it's in nixpkgs/lib.
<sphalerite> no infix composition though afaik :(
<simpson> Huh, I can't find a version in lib. It's not hard to write though.
sellout- has joined #nixos
silver_hook has quit [(Ping timeout: 240 seconds)]
bennofs has joined #nixos
<sphalerite> I think it's not there because the lack of custom infixing makes it a less convenient way to express what you mean most of the time
srk has quit [(Ping timeout: 264 seconds)]
<sphalerite> `lib.compose a b` vs `x: a (b x)`
<simpson> On the flip side (pardon the pun) I don't miss not having operators like (.:).
griff_ has joined #nixos
<sphalerite> what's (.:) ?
<sphalerite> flip?
<sphalerite> flipped compose?
<sphalerite> I can't just google .: 😭
<simpson> It's `(.) . (.)`
<sphalerite> so "compose composed with compose"… uh…
bennofs has quit [(Ping timeout: 246 seconds)]
<zennist> the boobs operator
erictapen has joined #nixos
<simpson> (.) . (.) :: (b -> c) -> (a1 -> a -> b) -> a1 -> a -> c
pie_ has joined #nixos
<sphalerite> oh I see
<Rotaerk> I see one of the settings in 'man configuration.nix' mention enableParallelBuilding, but that, itself, is not one of the documented settings for it
<Rotaerk> where is that setting at?
<sphalerite> that seems useful, but not useful enough to give it a name like that…?
<Rotaerk> I'd like to temporarily disable parallel building, to help me diagnose a failed build
<sphalerite> Rotaerk: it's an attribute on a derivation
<Rotaerk> ah
<sphalerite> if it's not present, it's assumed to be false
ibor has joined #nixos
takle has quit [(Remote host closed the connection)]
<sphalerite> Hm, it's only mentioned in the option documentation and the release notes in the nix manual :(
goibhniu has joined #nixos
<Rotaerk> well the problem I'm imagining is ... how would I get it to apply to all the derivations
<Rotaerk> I mean, I just want tthis entire build to be single threaded, so that I can make out what's failing
<Rotaerk> the problem is all the outputs are interleaved
<clever> nix-build -j 1
<Rotaerk> hmm
<clever> and maybe nix-build -j 1 --option build-cores 1
<Rotaerk> ah; interesting
<clever> -j1 will prevent derivations from being interleaved, the 2nd part will pass -j1 to make inside each
<clever> enableParallelBuilding just allows derivations to obey build-cores
takle has joined #nixos
rmarko has joined #nixos
pxc has joined #nixos
freeman42x[nix] has joined #nixos
thetet has joined #nixos
<sphalerite> Rotaerk: yeah, there's -j which decides how many derivations can be built at once and --cores which decides how many cores can be used for one derivation
sellout- has quit [(Quit: Leaving.)]
<Rotaerk> yea I just did that, and it's now clear what's failing
<sphalerite> Rotaerk: what might also be useful is passing -Q and just looking at the logs created in /nix/var/log
thetet has left #nixos []
<Rotaerk> HUnit fails to build
acarrico has quit [(Ping timeout: 240 seconds)]
<freeman42x[nix]> any trick to get rid of the flickering of the top right of the xfce default UI?
<clever> though nix doesnt save the log of failing builds, as far as i know
<freeman42x[nix]> the notifications/workspaces etc. area flickers every 3 seconds or so
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/6f6a7aae8f (from 18 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
nix-gsc-io`bot has quit [(Client Quit)]
freeman42x[nix] has quit [(Remote host closed the connection)]
<Rotaerk> time to have nix-build vomit for me ...
<Rotaerk> the failure report for WHY HUnit failed isn't clear
freeman42x[nix] has joined #nixos
sigmundv__ has joined #nixos
freeman42x[nix] has quit [(Remote host closed the connection)]
freeman42x[nix] has joined #nixos
<sphalerite> clever: yes it does :)
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] rycee pushed 1 new commit to master: https://git.io/v5gNy
<NixOS_GitHub> nixpkgs/master 402e6ac Samuel Leathers: libfpx: fix build with gcc6
NixOS_GitHub has left #nixos []
<sphalerite> freeman42x[nix]: don't know what would be causing it but running a compositor might help. Try nix-shell -p compton --run compton and see if it goes away
civodul has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] rycee closed pull request #28972: libfpx: fix build with gcc6 (master...libfpx) https://git.io/v5uYr
NixOS_GitHub has left #nixos []
ertes has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 closed pull request #28870: llvm-stdenv: fix default stdlib (staging...stdenv-default-stdlib) https://git.io/v5Rsu
NixOS_GitHub has left #nixos []
<freeman42x[nix]> sphalerite, already running the compositor recommended in the manual
<freeman42x[nix]> actually, that might be when it started flickering
jellowj has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 pushed 1 new commit to release-17.09: https://git.io/v5gAI
<NixOS_GitHub> nixpkgs/release-17.09 d941104 John Ericson: haskell infra: Make sure packages get custom stdenv...
NixOS_GitHub has left #nixos []
<sphalerite> freeman42x[nix]: yep, try disabling it
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 pushed 1 new commit to release-17.03: https://git.io/v5gAG
<NixOS_GitHub> nixpkgs/release-17.03 1360efe John Ericson: haskell infra: Make sure packages get custom stdenv...
NixOS_GitHub has left #nixos []
<freeman42x[nix]> sphalerite, I'll try playing with its settings a bit, if I can find them :)
nikola_i has joined #nixos
<freeman42x[nix]> I liked that in KDE I could just type something in the menu and it would find it, xfce doesn't seem to be doing that without the special search app
<sphalerite> xfce isn't fancy, if you want fancy stuff like that use KDE :p
<freeman42x[nix]> sphalerite, you call that fancy? :D a simple search?!
<freeman42x[nix]> sphalerite, there is compton under Accessories but it does not start
<sphalerite> ¯\_(ツ)_/¯
<sphalerite> it's probably already running
<sphalerite> does pgrep -a compton say anything?
<freeman42x[nix]> sphalerite, I assume that running that would open the settings for it
<freeman42x[nix]> pgrep or grep?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 closed pull request #28998: libstdc++: add setup-hook (master...libstdcxx-hook) https://git.io/v5udB
NixOS_GitHub has left #nixos []
<sphalerite> pgrep
<sphalerite> and no, compton doesn't have a graphical configuration interface
<sphalerite> it's all command-line flags
<freeman42x[nix]> sphalerite, the pgrep returns nothing
<freeman42x[nix]> I just used the settings for compton mentioned in the nixos manual
<sphalerite> ah. I don't know how the compton module works, I just run compton manually
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] ryantm opened pull request #29029: matterbridge: 3.8.2 -> 4.1.0 (master...update_mattermost) https://git.io/v5gxt
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] ryantm closed pull request #29029: matterbridge: 3.8.2 -> 4.1.0 (master...update_mattermost) https://git.io/v5gxt
NixOS_GitHub has left #nixos []
<freeman42x[nix]> I'll uninstall it and restart
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] rycee pushed 1 new commit to release-17.09: https://git.io/v5gx4
<NixOS_GitHub> nixpkgs/release-17.09 1134b9e Samuel Leathers: libfpx: fix build with gcc6...
NixOS_GitHub has left #nixos []
freeman42x[nix] has quit [(Remote host closed the connection)]
Infinisil has quit [(Quit: leaving)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 pushed 2 new commits to release-17.09: https://git.io/v5gpg
<NixOS_GitHub> nixpkgs/release-17.09 356a0c8 Daiderd Jordan: libstdc++: add setup-hook...
<NixOS_GitHub> nixpkgs/release-17.09 dcaa3fd Daiderd Jordan: clang-stdenv: use libstdcxxHook when targeting linux...
NixOS_GitHub has left #nixos []
sellout- has joined #nixos
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/a5a6cd017a (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] jammerful opened pull request #29030: jenkins: fixed-output derivation to avoid rebuilds (master...gerrit) https://git.io/v5gpy
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] yesbox opened pull request #29032: jackett: 0.7.1308 -> 0.8.151 (master...jackett_0.8.151) https://git.io/v5gh7
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] yesbox opened pull request #29033: sonarr: 2.0.0.4928 -> 2.0.0.4949 (master...sonarr_2.0.0.4949) https://git.io/v5ghF
NixOS_GitHub has left #nixos []
dejanr has quit [()]
dejanr has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 pushed 1 new commit to master: https://git.io/v5gjq
<NixOS_GitHub> nixpkgs/master 8706664 Daiderd Jordan: afl: use clangStdenv...
NixOS_GitHub has left #nixos []
siel has quit [(Remote host closed the connection)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 pushed 1 new commit to release-17.09: https://git.io/v5gjZ
<NixOS_GitHub> nixpkgs/release-17.09 171cc19 Daiderd Jordan: afl: use clangStdenv...
NixOS_GitHub has left #nixos []
Infinisil has joined #nixos
Guest11776 has quit [(Quit: Lost terminal)]
mkoenig has quit [(Ping timeout: 248 seconds)]
mkoenig_ has joined #nixos
odi has quit [(Ping timeout: 240 seconds)]
erictapen has quit [(Ping timeout: 260 seconds)]
drakonis has quit [(Read error: Connection reset by peer)]
ibor has quit [(Ping timeout: 240 seconds)]
ixxie has quit [(Quit: Lost terminal)]
phreedom has joined #nixos
<freeman42y> after compton uninstall the flickering has gone away
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 opened pull request #29034: libcxx-stdenv: fix for darwin (master...darwin-libcxx-stdenv) https://git.io/v52fj
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] ryantm opened pull request #29035: mattermost: 3.8.2 -> 4.1.0 (master...update_mattermost) https://git.io/v52Jm
NixOS_GitHub has left #nixos []
gnuhurd has quit [(Remote host closed the connection)]
siel has joined #nixos
nh2 has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] andir opened pull request #29036: rustup: 1.2.0 -> 1.3.0 (master...update-rustup1.3.0) https://git.io/v52U0
NixOS_GitHub has left #nixos []
bbarker has joined #nixos
goibhniu has quit [(Ping timeout: 248 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] cstrahan pushed 1 new commit to master: https://git.io/v52km
<NixOS_GitHub> nixpkgs/master 3189b01 Charles Strahan: go: init 1.9 (and set as default)
NixOS_GitHub has left #nixos []
ona has joined #nixos
Infinisil has quit [(Ping timeout: 260 seconds)]
<Sonarpulse> Johnw: would hnix be able to help me turn all pkgconfig buildInputs into nativeBuildInput?
[0x4A6F] has quit [(Remote host closed the connection)]
<edef> Sonarpulse: somehow I suspect grep and sed will do the trick
<Sonarpulse> edef: heh, I'm trying that now
<edef> also hi, long time
<Sonarpulse> indeed! :)
<edef> fun fact: one of your commits broke my musl-cross-make build
<Sonarpulse> :D
<Sonarpulse> I've had a lot such trouble-making commits
<edef> I can't figure out for the life of me why it happens, I just bisected it to that commit
MP2E has joined #nixos
<Sonarpulse> which one?
<Sonarpulse> btw talk to elvishjerricco about that
<Sonarpulse> he's working on webasm for ghc
<edef> well I'm building a clang/LLVM toolchain from scratch for embedded things
freeman42x[nix] has joined #nixos
<Sonarpulse> but webasm conventionally is used with some musl port
<edef> probably with a nix packageset based off it
<elvishjerricco> edef: me too =P
<edef> well, this has to be self-hosting
ThatDocsLady_afk has quit [(Quit: Arma-geddin-outta-here!)]
<edef> like, I intend to avoid rooting it in nixpkgs's bootstrap-tools
<elvishjerricco> Hm. yea I haven't gone that far
<Sonarpulse> edef: oh, what are you using as a root? illumos impure?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] LnL7 pushed 1 new commit to master: https://git.io/v52LV
<NixOS_GitHub> nixpkgs/master d0d9056 Daiderd Jordan: haskell-hscolour: fix darwin build
NixOS_GitHub has left #nixos []
<edef> Sonarpulse: no
<edef> Sonarpulse: [093cc00cdd9d8cf31ecce5bc1dd3645c460a1b98] cc-wrapper: Always export environment variables for binutils
<Sonarpulse> edef: ah!
<Sonarpulse> yes that one seems to have caused the most issus
<Sonarpulse> LD=$CC
<Sonarpulse> sprinkle that places
<edef> oh huh okay
<Sonarpulse> I took my illumos wild guess, what do you mean by no bootstrap tools then?
<Sonarpulse> you are cross compiling, not trying to do arm->arm, right?
goibhniu has joined #nixos
cpennington has quit [(Remote host closed the connection)]
ona has quit [(Read error: Connection reset by peer)]
<edef> Sonarpulse: soo
<edef> Sonarpulse: I treat everything as cross-compilation
<Sonarpulse> edef: good!
ona has joined #nixos
FRidh has quit [(Quit: Konversation terminated!)]
<edef> p sure my earliest prototypes of this stuff predate that
<edef> very sure, actually, I was working on it pre-election
<Sonarpulse> edef: well, I had it in my mind before I opened the issue :p
<edef> sure
<Sonarpulse> anyways, do always prefix the compiler for example?
<edef> I'm not trying to do a dick-measuring contest
<edef> yes
<Sonarpulse> excellent
<edef> no unprefixed compilers, ever
<Sonarpulse> and this is modified nixpkgs, not all-new package set?
<edef> it is not nixpkgs
ninja_in1 has quit [(Quit: WeeChat 1.8)]
<edef> I started out with GNU toolchains but getting it self-hosting sucked really badly
<edef> and I started playing with LLVM toolchains and.. wow so much better
<Sonarpulse> yeah
<Sonarpulse> gnu toolchains are nightmare
nix-gsc-io`bot has joined #nixos
<edef> the goal for this is to have all the niceties I and $friend want
<nix-gsc-io`bot> Channel nixos-17.03-small advanced to https://github.com/NixOS/nixpkgs/commit/8b517ebd6a (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-17.03-small)
nix-gsc-io`bot has quit [(Client Quit)]
<edef> musl, clang, GNU-free / low-GNU userland
<Sonarpulse> copumpkin and I have ever so vaguely mused on making llvm-linux stdenv
<edef> also no libgcc, but I haven't figured out how to make it use compiler-rt on x86_64 just yet
<Sonarpulse> elvishjerricco had issues with compiler-rt and crt*.o
<Sonarpulse> a lot of that stuff seemed not to exist in ways clang wasn't happy with
civodul has quit [(Quit: ERC (IRC client for Emacs 25.2.1))]
<elvishjerricco> yea I'm pretty sure clang hard codes the location of compiler-rt builtins to some subdirectory of LLVM. I'm probably gonna try to patch Clang to make it configurable.
<edef> mmh
Denommus has joined #nixos
<elvishjerricco> you can just do `-lcompiler_rt` and have the lib in the `-L` path somewhere, but Clang can still generate libgcc-specific code that way. This wasn't a problem when I was testing GHC on aarch64, but it didn't work for raspberry pi.
<elvishjerricco> so you need to do -rtlib=compiler-rt, and that has a hard coded path.
<edef> right, yes
<edef> I was stracing it to find things
<edef> my plan was to patch it to default rtlib to compiler-rt but I haven't dug into that just yet
<elvishjerricco> Though, if one built compiler-rt as a part of the llvm build, and if llvm was being built with clang, it might build compiler-rt for each of the possible targets and put it in that correct hard coded path. This would mean building llvm becomes a two stage thing, but I guess that's not the worst.
bfrog has joined #nixos
nh2 has quit [(Ping timeout: 255 seconds)]
<elvishjerricco> Oh actually probably not. compiler-rt depends on the headers from libc for some reason, so you do need at least the headers for the right platform to build the right compiler-rt, and I doubt llvm has any way to do that during its build process.
<edef> ah
dieggsy has quit [(Ping timeout: 260 seconds)]
nh2 has joined #nixos
Filystyn has quit [(Quit: Konversation terminated!)]
<Denommus> hey
<Denommus> anyone here using pypi2nix? I'm failing to build Pillow
Ivanych has quit [(Ping timeout: 240 seconds)]
<Denommus> during compilation it says openjpeg.h can't be found
nikola_i has quit [(Ping timeout: 255 seconds)]
_ris has joined #nixos
tmaekawa has quit [(Quit: tmaekawa)]
simukis has quit [(Quit: simukis)]
jellowj has quit [(Ping timeout: 246 seconds)]
jellowj has joined #nixos
hiratara has quit [(Ping timeout: 264 seconds)]
hiratara has joined #nixos
jsgrant has quit [(Quit: jsgrant)]
jellowj has quit [(Ping timeout: 248 seconds)]
scribbler has quit [(Remote host closed the connection)]
<dash> Denommus: you need to use pypi2nix -E libjpeg
<dash> -E is for specifying extra nix derivations to use
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 2 new commits to master: https://git.io/v52nc
<NixOS_GitHub> nixpkgs/master 226a201 WilliButz: grafana: 4.3.2 -> 4.4.3
<NixOS_GitHub> nixpkgs/master 333eaca Franz Pletz: Merge pull request #29027 from WilliButz/packageUpdates...
NixOS_GitHub has left #nixos []
<Denommus> dash: I am. This is my full cmd: pypi2nix -V "3.6" -r requirements.txt -r requirements-test.txt -E libmysql -E libjpeg -E libxml2 -E libxslt -E zlib -E libtiff -E freetype -E lcms -E libwebp -E openjpeg -E sqlite -E tcl -E pkgconfig
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 closed pull request #29023: misc pkgs: Reorganize dependencies ahead of #26805 (staging...deps-reorg) https://git.io/v5gBQ
NixOS_GitHub has left #nixos []
<Denommus> maybe it's libjpen and openjpeg at the same time that is getting in my way. Let me check
scribbler has joined #nixos
<Denommus> yeah, wasn't that
<edef> elvishjerricco: anyway, if you figure anything new out uhh
<edef> elvishjerricco: where should I be watching your progress?
<Rotaerk> hmm what do I do if a package in the latest nixpkgs is failing
<edef> elvishjerricco: given that we're roughly mucking with the same stuff
<edef> Rotaerk: fix it, or yell about it here, or open an issue
<edef> Rotaerk: maybe all three
<edef> which package is it?
ona has quit [(Quit: ...)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] elitak opened pull request #29038: Factorio version (master...factorio-version) https://git.io/v52cb
NixOS_GitHub has left #nixos []
<Rotaerk> edef, I think it's the HUnit haskell module
eacameron has quit [(Remote host closed the connection)]
jellowj has joined #nixos
eacameron has joined #nixos
nh2 has quit [(Ping timeout: 252 seconds)]
<Rotaerk> under ghc821
<edef> "think"?
<Rotaerk> well the build output is hard to read, hard to identify which thing is actually failing
scribbler has quit [(Ping timeout: 240 seconds)]
<Rotaerk> but I'm pretty sure it's HUnit
<Denommus> the name of the openjpeg.h file is actually openjpeg-2.1/openjpeg.h
<Denommus> can pypi2nix add this to the include search path somehow?
eacameron has quit [(Ping timeout: 260 seconds)]
remexre has quit [(Quit: ZNC 1.6.5 - http://znc.in)]
erasmas has quit [(Quit: leaving)]
scribbler has joined #nixos
remexre has joined #nixos
hiratara has quit [(Quit: ZNC - http://znc.in)]
remexre has quit [(Client Quit)]
bfrog has quit [(Ping timeout: 260 seconds)]
hiratara has joined #nixos
nh2 has joined #nixos
remexre has joined #nixos
<Denommus> I did pypi2nix -V "3.6" -r requirements.txt -r requirements-test.txt -E libmysql -E libxml2 -E libxslt -E zlib -E libtiff -E freetype -E lcms -E libwebp -E openjpeg -E sqlite -E tcl -E pkgconfig -N "CFLAGS='-I/usr/include/openjpeg-2.2/'"
<Denommus> but this is impure, so it's cheating
<Denommus> is there a way to pick openjpeg's include/openjpeg-2.2 path in there?
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.03-small advanced to https://github.com/NixOS/nixpkgs/commit/1360efeac6 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-17.03-small)
nix-gsc-io`bot has quit [(Client Quit)]
alx741_ has quit [(Quit: alx741_)]
stanibanani has joined #nixos
<Rotaerk> well, I've pinpointed the problem: HUnit under ghc8+ fails to build if I have enableExecutableProfiling set to true
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 opened pull request #29039: Deps reorg (release-17.09...deps-reorg) https://git.io/v52WB
NixOS_GitHub has left #nixos []
<Rotaerk> if I build for one of the ghc7s with that enabled, it works; if I build for one of the ghc8s with that disabled, it works
erictapen has joined #nixos
erictapen has quit [(Remote host closed the connection)]
erictapen has joined #nixos
Neo-- has quit [(Ping timeout: 260 seconds)]
nin has joined #nixos
nin is now known as Guest35723
Guest35723 has quit [(Client Quit)]
not_in_namespace has joined #nixos
<pxc> is Nix currently working on Windows/mingw?
Rotaerk is now known as Rotaerk2
<freeman42x[nix]> pxc, it is working fine on Windows Subsystem Linux
slack1256 has joined #nixos
<pxc> freeman42x[nix]: yeah, I've had success with it there, too. But 'native' mingw is a different platform :-)
griff_ has quit [(Quit: griff_)]
athan has quit [(Ping timeout: 252 seconds)]
<freeman42x[nix]> pxc, I know, just thought you wanted any way of using it on Windows
ibor has joined #nixos
<octalsrc[m]> does the `python27` package give me all the python standard packages in addition to the executable?
ryantrinkle has joined #nixos
Sonarpulse has quit [(Ping timeout: 240 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 3 new commits to master: https://git.io/v5285
<NixOS_GitHub> nixpkgs/master 02d715d Eric Litak: factorio: refactored the arch+version abstraction
<NixOS_GitHub> nixpkgs/master 2164c01 Eric Litak: factorio: 0.15.33 -> 0.15.34
<NixOS_GitHub> nixpkgs/master 7b397d1 Jörg Thalheim: Merge pull request #29038 from elitak/factorio-version...
NixOS_GitHub has left #nixos []
<slack1256> octalsrc[m]: nixos.python27 a nix "set" of package compatible with python27 . not just the interpreter
<slack1256> just the interpreter should be under nixos.python27.python or something along those lines
digitus has quit [(Quit: digitus)]
<Mic92> slack1256: you mean python27Packages
<Mic92> I mean python2Packages
<Mic92> octalsrc[m]: short answer yes.
<slack1256> ^ that
nix-gsc-io`bot has joined #nixos
<nix-gsc-io`bot> Channel nixos-17.09-small advanced to https://github.com/NixOS/nixpkgs/commit/171cc193b8 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-17.09-small)
nix-gsc-io`bot has quit [(Client Quit)]
<octalsrc[m]> Thanks!
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus opened pull request #29040: More basic system tests (master...tests_sys) https://git.io/v524G
NixOS_GitHub has left #nixos []
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] MP2E pushed 1 new commit to master: https://git.io/v524M
<NixOS_GitHub> nixpkgs/master 6df5f88 Cray Elliott: nvidia-x11: 375.66 -> 384.69
NixOS_GitHub has left #nixos []
athan has joined #nixos
<pxc> freeman42x[nix]: nah I'm mostly just curious, since its status in Nix/Nixpkgs is often unclear
freeman42x[nix] has quit [(Ping timeout: 252 seconds)]
ibor has quit [(Ping timeout: 260 seconds)]
ambro718 has quit [(Quit: Konversation terminated!)]
nh2 has quit [(Ping timeout: 240 seconds)]
takle has quit [(Remote host closed the connection)]
Denommus has quit [(Ping timeout: 255 seconds)]
python476 has joined #nixos
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] MP2E opened pull request #29041: pulseaudio: 10.0 -> 11.0 (master...pulse_update) https://git.io/v52BW
NixOS_GitHub has left #nixos []
sellout-1 has joined #nixos
sellout- has quit [(Read error: Connection reset by peer)]
bfrog has joined #nixos
<slack1256> is gpg-agent configurable as a systemd (user) service?
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/v52B6
<NixOS_GitHub> nixpkgs/master 14c3ce9 Andreas Rammhold: rustup: 1.2.0 -> 1.3.0
<NixOS_GitHub> nixpkgs/master 8e37e74 Jörg Thalheim: Merge pull request #29036 from andir/update-rustup1.3.0...
NixOS_GitHub has left #nixos []
erictapen has quit [(Ping timeout: 252 seconds)]
<Ralith> I don't think NixOS has any particular support for user services yet
<Ralith> not that works reliably anyway
<Mic92> slack1256: yes
mudri has quit [(Ping timeout: 240 seconds)]
<Mic92> slack1256: options.programs.gnupg.agent.enable = true;
markus1199 has joined #nixos
<Mic92> (without the options prefix)
<Mic92> Ralith: it has
ibor has joined #nixos
<Mic92> slack1256: I am not sure, if this exists in 17.03 already
<Ralith> Mic92: when did that get added?
<Mic92> Ralith: support for desktop related systemd services will be also better in 17.09
<Mic92> *user services
<Ralith> sweet
<Ralith> if gpg-agent and emacs --daemon start working out of the box I will be happy
markus1189 has quit [(Ping timeout: 248 seconds)]
nh2 has joined #nixos
ibor has quit [(Ping timeout: 240 seconds)]
zennist has quit [(Remote host closed the connection)]
zennist has joined #nixos
Wizek has quit [(Quit: Connection closed for inactivity)]
pxc has quit [(Ping timeout: 260 seconds)]
scribble_ has joined #nixos
scribbler has quit [(Read error: Connection reset by peer)]
<Ralith> exciting times!
ibor has joined #nixos
acarrico has joined #nixos
<MP2E> nice :) it's exciting seeing new features land
bfrog has quit [(Ping timeout: 252 seconds)]
<slack1256> nice!
ibor has quit [(Ping timeout: 248 seconds)]
<Mic92> fpletz: this could be worth be mentioned in the release notes: https://github.com/NixOS/nixpkgs/pull/26094
ibor has joined #nixos
sigmundv__ has quit [(Ping timeout: 240 seconds)]
luigy has joined #nixos
goibhniu has quit [(Ping timeout: 240 seconds)]
zennist has quit [(Remote host closed the connection)]
zennist has joined #nixos
ibor has quit [(Ping timeout: 240 seconds)]
NixOS_GitHub has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus opened pull request #29042: docker: 17.06.1-ce -> 17.06.2-ce (master...docker_17_06_2) https://git.io/v52E4
NixOS_GitHub has left #nixos []
zennist has quit [(Remote host closed the connection)]
zennist has joined #nixos