<mucaho> found it! it's located under "/nix/store/<hash>-linux-4.4.52-dev/lib/modules/4.4.52/build"
mkoenig has joined #nixos
<greoan> I understand that many prefer keeping a .nix file in their $HOME rather than using the nix-env -i command. I'd like to try that out, but am failing to find any information on how to do so. If I write my file and call it `default.nix`, where should I put it in my home directory? What is the absolute minimum such file, say, to just install emacs or sl? When that file is in it's right position and name, what is the command to "bring it to
<greoan> life"? Many thanks
byteflame has quit [(Ping timeout: 256 seconds)]
<mucaho> @greoan Do you mean a temporary development environment? https://nixos.org/wiki/Development_Environments
eacameron has quit [(Remote host closed the connection)]
<greoan> mucaho: I mean a user profile for my user. I want to use nix instead of homebrew and ports (on darwin) for my day to day software installing. So I want to use it to install whatever programs I need to use. And I understand from speaking to folks that the preferred way is via a declaration of your dependencies somewhere in your $HOME. Just can't figure out where to put that .nix file then, and what is the bare minimum to get a working
<greoan> installation from it
<greoan> But thanks for the link - will def use that as well
<mucaho> ah you mean like /etc/nixos/configuration.nix, but just for the current user, right?
<greoan> I think that's what I mean, yeah
<greoan> In the link you posted, it mentions "User Environment" which I suppose is what I'm looking to set up
ryanartecona has quit [(Quit: ryanartecona)]
<mucaho> wow, I would like to know that as well now haha
<greoan> Or how do you do, when you want to install something? Say you sit by your computer watching cat videos, and feel a pressing need to run the `sl` command. What are the steps to install it, given that you want to use a declarative .nix file that one can stuff in a git repo or whatever?
civodul has quit [(Ping timeout: 258 seconds)]
<mucaho> that's what I'm linking to you
<mucaho> have to try out myself to
jmiven has quit [(Quit: co'o)]
<NixOS_GitHub> [nixpkgs] dezgeg pushed 1 new commit to master: https://git.io/vSk0a
<NixOS_GitHub> nixpkgs/master 186cc51 Tuomas Tynkkynen: freicoin: Fix eval
jmiven has joined #nixos
<greoan> Github user lethalman mentions "For the programs you can simply have a .nix file with a set, and nix-env -i
<greoan> ", which I suppose is the answer to my question
<mucaho> yes, but I'm still figuring out the syntax
<justanotheruser> I installed tensorflowWithCuda and when I attempt to "import tensorflow" in python3, I get ImportError: libcudart.so.8.0: cannot open shared object file: No such file or directory. This github issue (https://github.com/tensorflow/tensorflow/issues/5625) involves using a different version, but I'm not sure that applies to me given the current tensorflow version through nixos is 1.0.0. Any suggestions? This is
byteflame has joined #nixos
thc202 has quit [(Ping timeout: 240 seconds)]
sigmundv_ has quit [(Ping timeout: 246 seconds)]
byteflame has quit [(Ping timeout: 246 seconds)]
erlandsona has joined #nixos
eacameron has joined #nixos
ryanartecona has joined #nixos
erlandsona1 has joined #nixos
erlandsona has quit [(Ping timeout: 260 seconds)]
<erlandsona1> Does anyone here know if nix packages has the alsa-tools-gui package? Or have any success running the hdajackretask program from alsaTools? I keep getting SEGFAULT whenever I try to run it and I think it's because alsa-tools-gui hasn't been packaged yet?
<mucaho> @greoan I got it
<mucaho> edit the file ~/.nixpkgs/config.nix like described in https://nixos.org/wiki/Howto_keep_multiple_packages_up_to_date_at_once#The_collection_way
<mucaho> then do "nix-env -iA nixpkgs.all"
benrob0329 has joined #nixos
<benrob0329> Has GVFS been fixed?
erlandsona1 has quit [(Ping timeout: 246 seconds)]
mudri has quit [(Quit: WeeChat 1.7)]
mucaho has left #nixos []
eacameron has quit [(Remote host closed the connection)]
markus1209 has joined #nixos
markus1219 has joined #nixos
markus1189 has quit [(Ping timeout: 256 seconds)]
markus1199 has quit [(Ping timeout: 264 seconds)]
<taeradan> hi
<taeradan> I've been trying to do conditional imports but "imports" seems to act weird with mkIf
erlandsona has joined #nixos
erlandsona has left #nixos []
erlandsona has joined #nixos
<taeradan> when I put a whole imports block into a mkIf, imports is not found, and lib.imports compiles but nothing is actually imported
<erlandsona> Anyone here?
<taeradan> when I try to have a single item in e mkIf inside a impoprts block, nix says "value is a path while a set was expected"
<taeradan> so I was wondering why imports doesn't work fine with mkIf like environment.systemPackages do for example
ericsagnes has joined #nixos
dhess` has joined #nixos
benrob0329 has left #nixos ["Gone for now"]
<gchristensen> taeradan: I don't know, but you can do a regular if statement
<taeradan> I've tried, but it produce an infinite recursion
<gchristensen> ah
<gchristensen> question: _why_ have a conditional import?
<gchristensen> why not put the condition on the other side of the import?
<taeradan> to avoid puting mkIf with my boolean in all the files concerned by that boolean
<taeradan> it will be harder to maintain
dhess` has quit [(Ping timeout: 240 seconds)]
erlandsona has quit [(Ping timeout: 246 seconds)]
<gchristensen> you could have a single module with a single if, which inside of that if, have imports = [...]
<taeradan> again a single if (and not mkif) produces infinite recursion
<gchristensen> I meant: you could have a single module with a single mkif, which inside of that mkif, have imports = [...]
carlosdagos has joined #nixos
<taeradan> when I try to put the "imports" block inside a mkIf block, i've got "The option imports .... does not exists"
Fare has quit [(Ping timeout: 240 seconds)]
<gchristensen> can you paste your module with the mkif?
ebzzry has joined #nixos
carlosdagos has quit [(Ping timeout: 240 seconds)]
<taeradan> this structure works with any configuration inside, but not with "imports"
<disasm> with nixops is it possible to rename a server in the config without building a new server? for example, I want to rename webserver -> prod01
<taeradan> gchristensen: "The option `imports' defined in `/etc/nixos/base/applications/graphical/default.nix' does not exist."
<taeradan> same behavior
<gchristensen> hm, that should work
<taeradan> I've tried lib.imports and config.imports, nix doesn't complain anymore but the imports have no effect
<gchristensen> can you get back the infinite recursion and add --show-trace when you build?
eacameron has joined #nixos
eacameron has quit [(Ping timeout: 260 seconds)]
<joachifm> mbrgm: nothing in partiuclar ...
<gchristensen> well that is useless
<gchristensen> sorry, I don't know :(
<taeradan> I was not able to find where "imports" is defined
<joachifm> taeradan: imports is not an option
<taeradan> joachifm: so, what is it ?
joneshf-laptop has joined #nixos
<joachifm> taeradan: a module has config, options, and imports. I think that if none of those are specified, config is assumed, for convenience
<joachifm> taeradan: hence the error you got (I think).
<joachifm> taeradan: so a conditional import would look like imports = ... ++ optional myBool ./fun-stuff.nix or something like that
ryanartecona has quit [(Quit: ryanartecona)]
<joachifm> taeradan: does that make sense? not exactly sure I get what you're trying to accomplish :)
<taeradan> I just want to import a file depending on a config option defined somewhere else
<taeradan> more precisely, a potentially large set of files
klarso has joined #nixos
<klarso> hello guys, i have openvpn.ovpn to conenct my ubuntu server. i can connect from windows but i couldnt make it in nixos. should i do something else to connect ?
<klarso> i just do "sudo openvpn --config myconfig.ovpn"
<joachifm> taeradan: have you tried something like { config, lib, ... }: { imports = lib.optionals config.fooEnabled [ ./a.nix ./b.nix ]; }
<taeradan> I didn't know about "optionals", I was stuck with "if" and "mkIf"
eacameron has joined #nixos
<taeradan> hurray ! optionals just saved my night
<joachifm> :)
<taeradan> it seems that mkIf was changing the type of what I defined, optional doesn't
<gchristensen> ahh yeah that makes sense
eacameron has quit [(Ping timeout: 246 seconds)]
<taeradan> arg, I was testing with "true", but with my actual variable, the infinite recursion is back
marsam has joined #nixos
<taeradan> now I remenber why I was first using mkIf
eacameron has joined #nixos
klarso has quit [(Quit: WeeChat 1.7)]
marsam has quit [(Remote host closed the connection)]
eacameron has quit [(Ping timeout: 258 seconds)]
dhess` has joined #nixos
seagreen has joined #nixos
tsmeets[m] has quit [(Remote host closed the connection)]
andreas303 has quit [(Ping timeout: 240 seconds)]
dhess` has quit [(Ping timeout: 258 seconds)]
ndowens08 has joined #nixos
<ndowens08> heys
gbbrt_ has joined #nixos
mbrgm_ has joined #nixos
mbrgm has quit [(Ping timeout: 264 seconds)]
mbrgm_ is now known as mbrgm
gbbrt has quit [(Ping timeout: 256 seconds)]
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
byteflame has joined #nixos
zeus_ has quit [(Ping timeout: 246 seconds)]
<fresheyeball> hello out there
<fresheyeball> how can I nix-env install from a .nix file?
symphorien has quit [(Quit: vacances)]
stepcut has quit [(Remote host closed the connection)]
RchrdB has quit [(Ping timeout: 246 seconds)]
<disasm> fresheyeball: nix-env -f ~/foo.nix -i '.*'
<disasm> You should check out the examples section of the manual: http://nixos.org/nix/manual/#examples
goibhniu has quit [(Ping timeout: 260 seconds)]
<fresheyeball> disasm: got it
zeus_ has joined #nixos
<fresheyeball> disasm: I'm still failing though
<fresheyeball> I just want oh my zsh on nixos
williamyaoh has joined #nixos
<williamyaoh> Does Nix automatically minimize symlink chains?
<disasm> ooh... nixops rename... how is that command not in the docs :)
<williamyaoh> For example, if I build a derivation with a symlink into /nix/store/...-foo/bar, and bar is just a symlink to /nix/store/...-baz/quux, will the symlink in my derivation automatically get rewritten to /nix/store/...-baz/quux?
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24310: advancecomp: 1.19 -> 1.23 (master...advancecomp) https://git.io/vSkVS
<deepfire> what is this with fetchPyPi failures on Travis?
zeus_ has quit [(Read error: Connection reset by peer)]
zeus_ has joined #nixos
cptchaos has quit [(Ping timeout: 258 seconds)]
<deepfire> I wonder if anyone cares about Travis these days..
<joachifm> travis seems fine now
<joachifm> or at least better than it has been for a while.
zeus_ has quit [(Read error: Connection reset by peer)]
zeus_ has joined #nixos
andreas303 has joined #nixos
<deepfire> "error: undefined variable ‘fetchPypi’ at /home/travis/build/NixOS/nixpkgs/pkgs/development/python-modules/btrees/default.nix:10:9"
<deepfire> ..as part of "=== Verifying that nixpkgs evaluates..."
<NixOS_GitHub> [nixpkgs] ndowens closed pull request #24225: cde: init at 0.1 (master...cde) https://git.io/vSeQL
<joachifm> deepfire: that's not a travis problem
<deepfire> joachifm: well, not directly, no -- but it's a problem for many PRs, I would assume
<joachifm> deepfire: that particular error was fixed by https://github.com/NixOS/nixpkgs/commit/82adcd6cfb1c779b86c26e326a33728b316fa9c6
<joachifm> (or so it looks, anyway ...)
<deepfire> cool!
<joachifm> travis might cause eval errors by exercising paths that aren't usually followed, but I don't think it can introduce spurious eval errors
<deepfire> was it merged?
<joachifm> deepfire: that commit is from master, yes. looks to me like it addresses the eval error you've encountered
<joachifm> deepfire: anyway, I restarted the job you linked so I guess we'll see what happens now
cptchaos has joined #nixos
Supersonic112 has quit [(Disconnected by services)]
Supersonic112_ has joined #nixos
mkoenig has quit [(Read error: Connection reset by peer)]
Supersonic112_ is now known as Supersonic112
<deepfire> joachifm: thanks!
dhess` has joined #nixos
mkoenig has joined #nixos
carlosdagos has joined #nixos
MP2E has joined #nixos
<MP2E> hey! I updated my local copy of nixpkgs to the latest master today and after I ran nixos-rebuild switch, my terminal font seems to have broken
<MP2E> the kernel is off so all the letters are really spaced out
<MP2E> i swear i've had this issue before like a year ago but i forgot what happened exactly
<MP2E> from looking at the changelog it looks like something to do with the recent staging merge
<MP2E> er
<MP2E> not kernel* kerning**
<MP2E> oops
carlosdagos has quit [(Ping timeout: 240 seconds)]
<MP2E> here's what I'm looking at :P
Rizy has quit [(Ping timeout: 260 seconds)]
dhess` has quit [(Ping timeout: 256 seconds)]
<MP2E> i'm searching for a solution, myself, but if you have any ideas i'm all ears
<MP2E> probably something to do with fontconfig
mizu_no_oto has joined #nixos
deepfire has quit [(Read error: Connection reset by peer)]
dpren has quit [(Quit: Connection closed for inactivity)]
danharaj has quit [(Ping timeout: 260 seconds)]
byteflame has quit [(Ping timeout: 240 seconds)]
greoan has quit [(Ping timeout: 240 seconds)]
ebzzry has quit [(Ping timeout: 240 seconds)]
ericsagnes has quit [(Ping timeout: 256 seconds)]
cptchaos has quit [(Ping timeout: 260 seconds)]
greoan has joined #nixos
stepcut has joined #nixos
hexagoxel has quit [(Ping timeout: 260 seconds)]
ebzzry has joined #nixos
hexagoxel has joined #nixos
zeus_ has quit [(Read error: Connection reset by peer)]
zeus_ has joined #nixos
alx741 has quit [(Quit: alx741)]
mguentner has quit [(Quit: WeeChat 1.7)]
ogkloo has quit [(Quit: WeeChat 1.4)]
ogkloo has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
eacameron has joined #nixos
mguentner has joined #nixos
zeus_ has quit [(Ping timeout: 246 seconds)]
eacameron has quit [(Ping timeout: 240 seconds)]
dhess` has joined #nixos
proteusguy has joined #nixos
williamyaoh has quit [(Quit: Lost terminal)]
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
dhess` has quit [(Ping timeout: 258 seconds)]
alx741 has joined #nixos
greoan has quit [(Remote host closed the connection)]
<MP2E> aha fixed
<MP2E> had to add 'fonts.fontconfig.ultimate.enable = true;' to my /etc/nixos/configuration.nix
spinus has quit [(Ping timeout: 256 seconds)]
MP2E has quit [(Quit: reboot)]
MP2E has joined #nixos
ericsagnes has joined #nixos
isHavvy is now known as Havvy
mguentner2 has joined #nixos
mguentner has quit [(Ping timeout: 260 seconds)]
<unlmtd[m]> but thats the default
<PenguinOfDoom> how come my network configuration is ignored? it started happening every other boot, but now it happens every time
IRCFrEAK has joined #nixos
stepcut has quit [(Remote host closed the connection)]
IRCFrEAK has left #nixos []
carlosdagos has joined #nixos
eacameron has joined #nixos
mkoenig has quit [(Read error: Connection reset by peer)]
dhess` has joined #nixos
carlosdagos has quit [(Ping timeout: 260 seconds)]
eacameron has quit [(Ping timeout: 260 seconds)]
mkoenig has joined #nixos
marsel has joined #nixos
ryanartecona has joined #nixos
dhess` has quit [(Ping timeout: 260 seconds)]
<PenguinOfDoom> ah, removing the other interface from vfio-pci fixed the first one
<PenguinOfDoom> but I can't prevent DHCP client from using that interface :/
marsel has quit [(Ping timeout: 268 seconds)]
zeus_ has joined #nixos
iyzsong has joined #nixos
xxlarz has joined #nixos
<unlmtd[m]> something happened to the way custom vim plugins are handled, cant rebuild now
<unlmtd[m]> vimUtils.buildVimPluginFrom2Nix doesnt seem to work anymore
catch22 has joined #nixos
<unlmtd[m]> must be a different structure, gotta brush up on my nix. anyone has custom vim plugins defined in their config I could guide myself with?
xxlarz has quit [(Quit: WeeChat 1.7)]
alx741 has quit [(Quit: alx741)]
dhess` has joined #nixos
hexagoxel has quit [(Ping timeout: 256 seconds)]
ryanartecona has quit [(Quit: ryanartecona)]
MP2E has quit [(Quit: leaving)]
hexagoxel has joined #nixos
takle has quit [(Remote host closed the connection)]
dhess` has quit [(Ping timeout: 260 seconds)]
<unlmtd[m]> xxlarz: just turn it on and your vpn server should give you an updated dns
<unlmtd[m]> xxlarz: if it's setup to do that
wkennington has joined #nixos
takle has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
hexagoxel has quit [(Ping timeout: 260 seconds)]
hexagoxel has joined #nixos
takle has joined #nixos
zeus_ has quit [(Read error: Connection reset by peer)]
zeus_ has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vSkXf
<NixOS_GitHub> nixpkgs/master a7a3d91 Vincent Laporte: ocamlPackages.ppx_traverse_builtins: init at 0.9.0...
carlosdagos has joined #nixos
taktoa has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vSkXt
<NixOS_GitHub> nixpkgs/master 6e0b727 Vincent Laporte: ocamlPackages.stdio: init at 0.9.0...
carlosdagos has quit [(Ping timeout: 240 seconds)]
marsel has joined #nixos
takle has joined #nixos
dhess` has joined #nixos
tsmeets[m] has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
endformationage has quit [(Quit: WeeChat 1.6)]
zraexy has quit [(Ping timeout: 240 seconds)]
hexagoxel has quit [(Ping timeout: 258 seconds)]
zraexy has joined #nixos
hexagoxel has joined #nixos
dhess` has quit [(Ping timeout: 260 seconds)]
Guest32210 is now known as katyucha
takle has joined #nixos
takle has quit [(Ping timeout: 258 seconds)]
kalebo has quit [(Ping timeout: 240 seconds)]
edvorg has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
zeus_ has quit [(Ping timeout: 240 seconds)]
ambro718 has joined #nixos
hexagoxel has quit [(Ping timeout: 256 seconds)]
adarqui has joined #nixos
hexagoxel has joined #nixos
ixxie has joined #nixos
takle has joined #nixos
simendsjo has joined #nixos
takle has quit [(Ping timeout: 268 seconds)]
reinzelmann has joined #nixos
takle has joined #nixos
Wizek has joined #nixos
Wizek_ has joined #nixos
takle has quit [(Ping timeout: 268 seconds)]
byteflame has joined #nixos
takle has joined #nixos
ixxie has quit [(Read error: No route to host)]
byteflame has quit [(Ping timeout: 240 seconds)]
takle has quit [(Ping timeout: 256 seconds)]
dhess` has joined #nixos
kalebo has joined #nixos
hexagoxel has quit [(Ping timeout: 260 seconds)]
hexagoxel has joined #nixos
dhess` has quit [(Ping timeout: 264 seconds)]
ericsagnes has quit [(Ping timeout: 240 seconds)]
kalebo has quit [(Ping timeout: 260 seconds)]
takle has joined #nixos
Rizy has joined #nixos
takle has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] LnL7 pushed 3 new commits to master: https://git.io/vSkME
<NixOS_GitHub> nixpkgs/master 2078c34 Sophie Taylor: fetchRepoProject: Fix buildCommand
<NixOS_GitHub> nixpkgs/master 00f472a Daiderd Jordan: fetchrepoproject: cleanup extra flags
<NixOS_GitHub> nixpkgs/master 7dc489d Daiderd Jordan: Merge pull request #24275 from spacekitteh/fetchFromGitRepo...
<NixOS_GitHub> [nixpkgs] LnL7 closed pull request #24275: fetchRepoProject: Fix buildCommand (master...fetchFromGitRepo) https://git.io/vSUck
<spacekitteh[m]> yay
periklis has joined #nixos
<LnL> I didn't notice the multiline issue yesterday
<spacekitteh[m]> indeed
<spacekitteh[m]> idk why i didn't think to do it like you did
Ivanych has quit [(Ping timeout: 268 seconds)]
kalebo has joined #nixos
<NixOS_GitHub> [nixpkgs] kamilchm opened pull request #24312: ponyc: 0.11.3 -> 0.11.4 (master...ponyc) https://git.io/vSkMX
stepcut has joined #nixos
DutchWolfie has joined #nixos
stepcut has quit [(Ping timeout: 240 seconds)]
roconnor has quit [(Ping timeout: 264 seconds)]
carlosdagos has joined #nixos
carlosdagos has quit [(Ping timeout: 240 seconds)]
mudri has joined #nixos
dhess` has joined #nixos
spacekitteh has quit [(Ping timeout: 260 seconds)]
spacekitteh has joined #nixos
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vSkDM
<NixOS_GitHub> nixpkgs/master 6c9bfa3 Vincent Laporte: ocamlPackages.angstrom: 0.3.0 -> 0.4.0
hexagoxel has quit [(Ping timeout: 260 seconds)]
dhess` has quit [(Ping timeout: 264 seconds)]
hexagoxel has joined #nixos
takle has joined #nixos
takle has quit [(Ping timeout: 256 seconds)]
takle has joined #nixos
thc202 has joined #nixos
Jackneill has joined #nixos
wkennington has quit [(Read error: Connection reset by peer)]
mudri has quit [(Ping timeout: 260 seconds)]
takle has quit [(Ping timeout: 240 seconds)]
froglegstew has quit [(Ping timeout: 240 seconds)]
froglegstew has joined #nixos
takle has joined #nixos
Wizek__ has joined #nixos
takle has quit [(Ping timeout: 246 seconds)]
Wizek has quit [(Ping timeout: 256 seconds)]
Wizek_ has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vSky8
<NixOS_GitHub> nixpkgs/master e3fd4ec Vincent Laporte: ocamlPackages.ocaml_mysql: 1.1.1 -> 1.2.1
takle has joined #nixos
takle has quit [(Ping timeout: 268 seconds)]
takle has joined #nixos
Wizek_ has joined #nixos
mudri has joined #nixos
takle has quit [(Ping timeout: 258 seconds)]
ericsagnes has joined #nixos
ambro718 has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] womfoo opened pull request #24313: iterm2: 3.0.4 -> 3.0.14 + fix build (master...bump/iterm2-3.0.14) https://git.io/vSkyH
byteflame has joined #nixos
hexagoxel has quit [(Ping timeout: 260 seconds)]
hexagoxel has joined #nixos
ebzzry has quit [(Ping timeout: 256 seconds)]
byteflame has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
takle has joined #nixos
eacameron has quit [(Ping timeout: 240 seconds)]
takle has quit [(Ping timeout: 240 seconds)]
dhess` has joined #nixos
takle has joined #nixos
dhess` has quit [(Ping timeout: 240 seconds)]
anelson has quit [(Ping timeout: 246 seconds)]
mounty has joined #nixos
<mounty> Hello; I'm trying to install NixOS on a qemu-kvm instance running under OmniOS (OpenSolaris derivative). I passed -drive file=/dev/zvol/dsk/vault/vol/nixos_x64,cache=writeback,if=virtio,index=0 to the qemu-kvm command.
takle has quit [(Ping timeout: 256 seconds)]
<mounty> It was necessary to add noapic to the NixOS CD boot command, to stop the kernel panicking.
<mounty> Now it's booted to a command prompt, but I cannot see the virtual HD.
<mounty> Oh wait sorry cancel all the above.
* mounty slaps forehead
<mounty> The HD is /dev/vda not /dev/sda.
[0x4A6F] has quit [(Ping timeout: 240 seconds)]
[0x4A6F] has joined #nixos
<MichaelRaskin> Funny. Before Fontconfig/Freetype update I had to take only the minimum subset from fonts/conf.d to get the specific rendering of DejaVu Sans Mono that I want, now minimal-config rendering is bad but taking the entire NixOS-generated config is fine. I am a bit scared of how anonying testing all this should be when Debian wants to update fc/ft
<gchristensen> MichaelRaskin: extremely :p
<gchristensen> I'm certain
<unlmtd[m]> ahh I see the vim plugin stuff has changed, is there some documentation on the changes?
<MichaelRaskin> Here it was at least cheap to try different wildcards for taking configs from the generated set
<MichaelRaskin> (it would be harder even if I ran true NixOS, I guess)
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #17694: curl: Add GnuTLS as an alternative to openSSL (master...curl) https://git.io/v60wC
takle has quit [(Ping timeout: 246 seconds)]
<avn> MichaelRaskin: I hit similiar problem when build/update cairocffi. Finished with turn tests off (but well, I need off only one test really)
<avn> may be will be good to have minimalConfiguredFontcoonfig, for build/test purposes, common for all packages?
<fpletz> moin :)
simendsjo has quit [(Read error: Connection reset by peer)]
<MichaelRaskin> My problem is that my test case is «I accept the rendering in my terminals as good enough»
takle has joined #nixos
<MichaelRaskin> I can tell a package not to run its tests, I am not willing to turn off the test that is «I am comfortable using my tools»
<MichaelRaskin> And this time _minimal_ config failed the test (but full NixOS config worked, unlike the previous time)
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 2 new commits to master: https://git.io/vSk98
<NixOS_GitHub> nixpkgs/master c7cd4fe Kamil Chmielewski: ponyc: 0.11.3 -> 0.11.4
<NixOS_GitHub> nixpkgs/master b9f35c1 Michael Raskin: Merge pull request #24312 from kamilchm/ponyc...
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/vSk94
<NixOS_GitHub> nixpkgs/master 101cb04 Joachim Fasting: surf-webkit2: 2017-03-06 -> 2017-03-22...
takle has quit [(Remote host closed the connection)]
edvorg has quit [(Remote host closed the connection)]
takle has joined #nixos
iyzsong has quit [(Quit: ZNC 1.6.4 - http://znc.in)]
YellowOnion has joined #nixos
<YellowOnion> how do I rune wine64?
<YellowOnion> actually nevermind, looks like you do it the same way you do it on any other linux OS
<gchristensen> great to hear ;)
<avn> you can switch your build to wine32/wine64 and wineWow (combined 32+64)
<avn> Actually only 32bit well tested
carlosdagos has joined #nixos
rmrfroot has joined #nixos
<rmrfroot> i'm trying to use nftables on nixos 17.03, but it can't be started since iptables need to be unloaded. however i can't unload iptables because it is in use? firewall is disabled, btw. this is after rebooting a couple of times too.
carlosdagos has quit [(Ping timeout: 260 seconds)]
<YellowOnion> avn, how do you switch the builds?
<YellowOnion> still getting use to nix
<gchristensen> another embargoed Xen patch :( to be released 2017-04-04 12:00
hexagoxel has quit [(Ping timeout: 260 seconds)]
<avn> wine.override { wineBuild = "wine64"; } # or wineWow for combined
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSk9F
<NixOS_GitHub> nixpkgs/master bb5d0f3 Robin Gloster: gdm: the patch is still necessary
hexagoxel has joined #nixos
<YellowOnion> avn, thanks!
<avn> by default `config.wine.build or "wine32"` is used, where config is nixpkgs.config branch of your configuration.nix
<globin> domenkozar: what's the state of https://github.com/NixOS/nixpkgs/pull/23518?
<avn> All my apps is 32bit, so I test wine32 build only on updates
rmrfroot has quit [(Read error: No route to host)]
rmrfroot has joined #nixos
goibhniu has joined #nixos
<rmrfroot> setting `boot.blacklistedKernelModules = ["ip_tables"];` and rebooting solved my problems with nftables
dhess` has joined #nixos
<gchristensen> oh joy, searching for CVE numbers has started returning our own security reports :o https://duckduckgo.com/?q=CVE-2017-2633
<NixOS_GitHub> [nixpkgs] therealpxc opened pull request #24314: fish: fix environment clobbering (release-17.03...fish) https://git.io/vSkHw
<MichaelRaskin> Oh wow, did you look _which copy_?
<gchristensen> oh man
<gchristensen> I guess I have to erase those :(
frigate_freedom has joined #nixos
<gchristensen> deleted
<frigate_freedom> Hello guys!
<frigate_freedom> Do you know when plasma 5.9 will be included in nixos?
<MichaelRaskin> But basically that means we cannot assume we are small anymore…
<gchristensen> good thing / bad thing I suppose
<MichaelRaskin> Yeah, both
dhess` has quit [(Ping timeout: 260 seconds)]
<rmrfroot> why delete it?
<MichaelRaskin> rmrfroot: this was about drafts
<MichaelRaskin> DDG ranked a draft as number-one result
<MichaelRaskin> Instead of the final version
<gchristensen> the repository was named "garbage" for goodness sakes :P
<rmrfroot> ah ok :)
<rmrfroot> gchristensen: haha :D
<rmrfroot> did not see that
<MichaelRaskin> gchristensen: do you expect people to click links? really?
<gchristensen> it was my dumping ground for testing the github api
<MichaelRaskin> Hasn't /. taught you anything??
<mounty> If I have users.extraUsers.jackrose-ci.extraGroups = [ "wheel" ] shouldn't that put user jackrose-ci into group wheel so that s/he can sudo ?
<gchristensen> hehe
<joepie91> gchristensen: wait, any reason that this getting indexed is a problem? are these not already public advisories anyway?
<MichaelRaskin> joepie91: drafts indexed above release versions is a problem
<joepie91> I was too late to click the link when it was still there so I have no idea what it was
<joepie91> :p
<joepie91> what was it a draft of exactly?
<MichaelRaskin> Well, the _search_ link is still in the backlog
<gchristensen> if you click the DDG link, it'll show "https://github.com/grahamc/garbage/issues/63"
<MichaelRaskin> This were drafts of the advisory text, of the triage instructions, etc.
<gchristensen> it was a draft of https://github.com/NixOS/security/issues/35
<joepie91> ahhhh.
goibhniu has quit [(Ping timeout: 258 seconds)]
<joepie91> right
<mounty> gchristensen: how'
<joepie91> gchristensen: I think this is why drafts usually have big red font "THIS IS A DRAFT" on every page
<joepie91> :P
<mounty> s the boycott going?
<gchristensen> mounty: what boycott?
<gchristensen> hah
<gchristensen> not very delicious :(
byteflame has joined #nixos
<mounty> Now I have peoples attention, can I ask my question again:
<mounty> If I have users.extraUsers.jackrose-ci.extraGroups = [ "wheel" ] shouldn't that put user jackrose-ci into group wheel so that s/he can sudo ?
<mounty> ... because it didn't.
<mounty> And yes, I did nixos-rebuild switch.
<rmrfroot> mounty: and `security.sudo.enable = true`?
frigate_freedom has left #nixos []
<gchristensen> groups are inherited when the terminal is spawned, you may need to restart the service or the system or log out / log in, something like that
<mounty> Oh sorry, I did nixos-rebuild switch BEFORE adding the configuration change.
* mounty slaps forehead again.
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to master: https://git.io/vSkHh
<NixOS_GitHub> nixpkgs/master a381ee8 Nikolay Amiantov: zenity: fix for non-GNOME 3
<gchristensen> hehe
<mounty> It's working now. Thanks and sorry for the interruption.
<NixOS_GitHub> [nixpkgs] abbradar pushed 1 new commit to release-17.03: https://git.io/vSkQe
<NixOS_GitHub> nixpkgs/release-17.03 39326c6 Nikolay Amiantov: zenity: fix for non-GNOME 3...
<mounty> Back to ultra-rightwing parliamentary grandstanding.
amir has quit [(Remote host closed the connection)]
<gchristensen> mounty: also I look _way_ better in a suit than that george one
amir has joined #nixos
<mounty> You could not look worse. The guy is a tool.
<gchristensen> hehe
drasich has quit [(Ping timeout: 246 seconds)]
<MichaelRaskin> gchristensen: looking good in a suite generally reduces your credibility among people who can write code…
<mounty> There must be something wrong with the water up there for people to vote for him but this is the state that turned-down DST because the extra hour of sunlight would bleach their curtains.
<gchristensen> MichaelRaskin: it is a burden I have to carry
<gchristensen> mounty: that is very funny
<MichaelRaskin> mounty: do you need a _reason_ to turn down DST?
<mounty> It's also the state that voted-in Joh Bjelke-Petersen AFTER he was exposed as a gerrymandering crook.
<gchristensen> mounty: I come from the USA, I can't talk.
<MichaelRaskin> In the same state?
<mounty> MichaelRaskin: some like it; some don't. Apparently some are trying to revive the issue although it was only 25 years since it was last turned down.
<MichaelRaskin> I mean, he was voted in by the same people his gerrymandering favoured, right?
<mounty> MichaelRaskin: that's right; the 'country' people.
<mounty> Anyway, enough politix.
<mounty> Thanks for the nixos help.
DutchWolfie has quit [(Quit: Konversation terminated!)]
xadi has joined #nixos
m0rphism2 has quit [(Ping timeout: 240 seconds)]
goibhniu has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSkQ6
<NixOS_GitHub> nixpkgs/master 4f9e590 Robin Gloster: gitkraken: clean-up
<NixOS_GitHub> [nixpkgs] globin pushed 3 new commits to release-17.03: https://git.io/vSkQP
<NixOS_GitHub> nixpkgs/release-17.03 68a0fa8 NWDD: gitkraken: init at 2.1.0...
<NixOS_GitHub> nixpkgs/release-17.03 7b5ef78 NWDD: gitkraken: 2.1.0 -> 2.2.0...
<NixOS_GitHub> nixpkgs/release-17.03 2f1f9b1 Robin Gloster: gitkraken: clean-up...
m0rphism2 has joined #nixos
<mounty> Is it possible to configure an environment variable setting for a particular user under users.extraUsers or similar?
<mounty> I'm looking at https://nixos.org/hydra/manual/#chap-introduction which states that a hydra installation needs $HYDRA_DBI and HYDRA_DATA
<NixOS_GitHub> [nixpkgs] cillianderoiste closed pull request #23251: hieroglyph: init at 0.7.1 (master...hieroglyph) https://git.io/vyt0R
<NixOS_GitHub> [nixpkgs] domenkozar force-pushed hydra-bump from 3631f8d to 99632d5: https://git.io/vSkQh
<NixOS_GitHub> nixpkgs/hydra-bump 99632d5 Domen Kožar: Nix, Hydra: bump to 2017-03-21
goibhniu has quit [(Ping timeout: 258 seconds)]
<Mateon1> Hi, how can I prefetch something and get the sha256 hash if there doesn't exist a nix-prefetch-x for it?
<rmrfroot> mounty: here's a hydra config with instructions I used for NixOS: http://lpaste.net/5003373652704493568
<rmrfroot> mounty: not using it right now, so it might need some updating, but maybe it will give you some insight in how to set it up
<mounty> Thanks rmrfroot: that
<mounty> 's really helpful. I'll look at it tomorrow now as I'm so tired I'm pressing Enter at the wrong times.
<rmrfroot> mounty: no worries :)
<mounty> One last thing: can you easily add an extra entry or two to /etc/hosts via configuration.nix?
<NixOS_GitHub> [nixpkgs] cillianderoiste closed pull request #24304: docs: clarify UEFI bootloader setup (master...uefi-install-docs) https://git.io/vSkOo
hexagoxel has quit [(Ping timeout: 256 seconds)]
<MichaelRaskin> Yes
<mounty> OK say I want to append "192.168.1.2 services" ?
<mounty> (That's where my Postgres server is running, BTW)
hexagoxel has joined #nixos
<MichaelRaskin> networking.extraHosts = "\n192.168.1.2 services\n";
<mounty> Thanks MichaelRaskin; that's excellent.
<globin> domenkozar: I'm definitely fine with cherry-picking hydra, nixUnstable if there are no issues :)
goibhniu has joined #nixos
slyfox has quit [(Quit: :))]
slyfox has joined #nixos
Sonarpulse has quit [(Ping timeout: 246 seconds)]
goibhniu has quit [(Ping timeout: 258 seconds)]
anelson has joined #nixos
dhess` has joined #nixos
<NixOS_GitHub> [nixpkgs] zimbatm pushed 1 new commit to master: https://git.io/vSk5O
<NixOS_GitHub> nixpkgs/master f77de6d zimbatm: arcanist: 20160825 -> 20170323
tsmeets[m] has quit [(Remote host closed the connection)]
ambro718 has joined #nixos
dhess` has quit [(Ping timeout: 240 seconds)]
goibhniu has joined #nixos
RchrdB has joined #nixos
m0rphism2 has quit [(Ping timeout: 268 seconds)]
goibhniu has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] abbradar opened pull request #24317: phpfpm service: don't use private /tmp (master...phpfpm-tmp) https://git.io/vSkd0
spinus has joined #nixos
cfricke has joined #nixos
cfricke has quit [(Client Quit)]
<rmrfroot> are there any scenarios where NixOS ignores `boot.blacklistedKernelModules` and loads modules anyway?
cfricke has joined #nixos
m0rphism2 has joined #nixos
rmrfroot has quit [(Remote host closed the connection)]
goibhniu has joined #nixos
carlosdagos has joined #nixos
civodul has joined #nixos
carlosdagos has quit [(Ping timeout: 260 seconds)]
eacameron has joined #nixos
mkoenig has quit [(Remote host closed the connection)]
goibhniu has quit [(Ping timeout: 258 seconds)]
reinzelmann has quit [(Quit: Leaving)]
JayVii has joined #nixos
<JayVii> hey, i cannot quite find something on that on the options- or wikipages. is there a way to use override-options to change firefox' UI-language or do i have to rebuild firefox myself?
<MichaelRaskin> I know firefox-bin (Mozilla-built and minimally patchelf'ed) should come with a lot of languages,
<MichaelRaskin> Not sure how to change the set of languages during the source build… (should be easy to patch the package definition to add language support, though)
<JayVii> i'll try firefox-bin, thanks.
<NixOS_GitHub> [nixpkgs] pSub closed pull request #24285: phpPackages.composer: 1.3.2 -> 1.4.1 (master...update-composer) https://git.io/vSUX1
<18VAAU6WV> [nixpkgs] pSub pushed 2 new commits to master: https://git.io/vSkF4
<18VAAU6WV> nixpkgs/master 73edc1d Maximilian Bosch: phpPackages.composer: 1.3.2 -> 1.4.1
<18VAAU6WV> nixpkgs/master 54c1592 Pascal Wittmann: Merge pull request #24285 from Ma27/update-composer...
goibhniu has joined #nixos
amir has quit [(Read error: Connection reset by peer)]
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to release-17.03: https://git.io/vSkF0
<NixOS_GitHub> nixpkgs/release-17.03 0e49472 Maximilian Bosch: phpPackages.composer: 1.3.2 -> 1.4.1...
<NixOS_GitHub> nixpkgs/release-17.03 c2ad3e4 Robin Gloster: networkd: fix setting both defaultGateway{,6}...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSkFu
<NixOS_GitHub> nixpkgs/master 6b8ad8b Robin Gloster: networkd: fix setting both defaultGateway{,6}
byteflame has quit [(Ping timeout: 256 seconds)]
dhess` has joined #nixos
goibhniu has quit [(Ping timeout: 258 seconds)]
dhess` has quit [(Ping timeout: 256 seconds)]
amir has joined #nixos
simendsjo has joined #nixos
simendsj` has joined #nixos
simendsj` has quit [(Remote host closed the connection)]
simendsjo has quit [(Client Quit)]
simendsjo has joined #nixos
eacameron has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] ttuegel closed pull request #24139: qt58: enable darwin compatibility (master...topic_qt58_darwin_compatibility) https://git.io/vyNWN
<NixOS_GitHub> [nixpkgs] globin closed pull request #24317: phpfpm service: don't use private /tmp (master...phpfpm-tmp) https://git.io/vSkd0
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vSkbs
<NixOS_GitHub> nixpkgs/release-17.03 082666f Nikolay Amiantov: phpfpm service: don't use private /tmp...
goibhniu has joined #nixos
eacameron has joined #nixos
eacameron has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
goibhniu has quit [(Ping timeout: 258 seconds)]
eacameron has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] veprbl opened pull request #24320: citrix-receiver: fix wrapper, direct dl url, /home/demo/nixpkgs needs… (master...cf) https://git.io/vSkNC
rmrfroot has joined #nixos
mucaho has joined #nixos
marsel has quit [(Ping timeout: 258 seconds)]
goibhniu has joined #nixos
<mucaho> greetings! anyone tried developing a kernel module in nixos 16.09? followed suggested procedure (https://nixos.org/nixos/manual/index.html#idm140737315793904), but got "insmod: ERROR: could not insert module os/linux/mt7662u_sta.ko: Unknown symbol in module". anyone else had this problem? if so, how did you solve it?
<mucaho> I did set hardeningDisable=all, as suggested here (https://github.com/NixOS/nixpkgs/issues/18995#issuecomment-277308110)
<Dezgeg> you probably didn't load a module that is a dependency
<mucaho> and CFLAGS_MODULE=-fno-pic, as suggested here (https://github.com/ikwzm/FPGA-SoC-Linux/issues/1#issuecomment-277966130)
<mucaho> can you list dependencies of a not loaded module somehow?
<Dezgeg> it prints to dmesg the symbol names at least
<mucaho> so after trying insmod, i should just do dmesg in shell?
<mucaho> yep, thx that lists some things
tghume has quit [(Ping timeout: 255 seconds)]
goibhniu has quit [(Ping timeout: 258 seconds)]
eacameron has joined #nixos
rmrfroot has quit [(Ping timeout: 260 seconds)]
ixxie has joined #nixos
dhess` has joined #nixos
<globin> mucaho: did you export hardeningDisable
<mucaho> @globin, yes, I've identified the problem, it's because of paths like "/etc/wireless/" that don't exist on NixOS
goibhniu has joined #nixos
dhess` has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] rbasso opened pull request #24321: exercism: 2.3.0 -> 2.4.0 (master...exercism-2.4.0) https://git.io/vSkxv
goibhniu has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] WilliButz opened pull request #24322: manticore: fix build, remove builder.sh (see #23253) (master...master) https://git.io/vSkxE
<NixOS_GitHub> [nixpkgs] NeQuissimus opened pull request #24323: git: 2.12.0 -> 2.12.2 (master...git_2_12_2) https://git.io/vSkxa
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/vSkxo
<NixOS_GitHub> nixpkgs/master ecd0e1a Joachim Fasting: torbrowser: reduce risk of stale Nix store references...
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 2 new commits to master: https://git.io/vSkxX
<NixOS_GitHub> nixpkgs/master 10725a6 Tim Steinbach: git: 2.12.0 -> 2.12.2
<NixOS_GitHub> nixpkgs/master 5c84165 Tim Steinbach: Merge pull request #24323 from NeQuissimus/git_2_12_2...
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to release-17.03: https://git.io/vSkxD
<NixOS_GitHub> nixpkgs/release-17.03 338afb9 Tim Steinbach: Merge pull request #24323 from NeQuissimus/git_2_12_2...
<NixOS_GitHub> [nixpkgs] dezgeg closed pull request #24322: manticore: fix build, remove builder.sh (see #23253) (master...master) https://git.io/vSkxE
<NixOS_GitHub> [nixpkgs] dezgeg pushed 1 new commit to release-17.03: https://git.io/vSkxj
<NixOS_GitHub> nixpkgs/release-17.03 3a0a58c Willi Butz: manticore: fix build, remove builder.sh (see #23253)...
Itkovian has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus opened pull request #24324: kotlin: 1.1 -> 1.1.1 (master...kotlin_1_1_1) https://git.io/vSkpU
carlosdagos has joined #nixos
goibhniu has joined #nixos
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24325: lzfse: 2016-06-21 -> 2017-03-08 (master...lzfse) https://git.io/vSkpL
c0ff33 has joined #nixos
carlosdagos has quit [(Ping timeout: 258 seconds)]
mucaho has quit [(Quit: Page closed)]
roconnor has joined #nixos
simendsjo has quit [(Read error: Connection reset by peer)]
simendsjo has joined #nixos
simendsjo has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] rzetterberg opened pull request #24326: nftables service: Adds a heads-up regarding nftables and Docker incompability (master...nftables-docs) https://git.io/vSkp8
ebzzry has joined #nixos
<NixOS_GitHub> [nixpkgs] shlevy pushed 1 new commit to master: https://git.io/vSkpD
<NixOS_GitHub> nixpkgs/master f087b75 Shea Levy: nix-buffer support: Make process-environment changes actually local
goibhniu has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] shlevy pushed 1 new commit to release-17.03: https://git.io/vSkpH
<NixOS_GitHub> nixpkgs/release-17.03 818c0e2 Shea Levy: nix-buffer support: Make process-environment changes actually local...
marsam has joined #nixos
ryanartecona has joined #nixos
ebzzry has quit [(Ping timeout: 240 seconds)]
c0ff33 has quit [(Quit: Lost terminal)]
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSkh8
<NixOS_GitHub> nixpkgs/master dc10688 Richard Zetterberg: nftables: adds information regarding nftables and Docker (#24326)
goibhniu has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://github.com/NixOS/nixpkgs/commit/70426c48e85cc60df4d9c5fddcc08f5fa6c7d5eb
<NixOS_GitHub> nixpkgs/release-17.03 70426c4 Richard Zetterberg: nftables: adds information regarding nftables and Docker (#24326)...
c0ff33 has joined #nixos
tghume has joined #nixos
dhess` has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus opened pull request #24327: minikube 0.17.1 into 17.03 (release-17.03...17_03_minikube) https://git.io/vSkjv
alx741 has joined #nixos
<alibabzo> Hi guys
goibhniu has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vSkjs
<NixOS_GitHub> nixpkgs/master f6c9121 Kranium Gikos Mendoza: iterm2: 3.0.4 -> 3.0.14
<NixOS_GitHub> nixpkgs/master 69a169e Joachim F: Merge pull request #24313 from womfoo/bump/iterm2-3.0.14...
<alibabzo> With configurable vim, vam.knownPlugins seems not to work. Anyone know why? Nix doesn't like my local nixpkgs configuration any more.
<NixOS_GitHub> [nixpkgs] globin closed pull request #24327: minikube 0.17.1 into 17.03 (release-17.03...17_03_minikube) https://git.io/vSkjv
stepcut has joined #nixos
<zetok> is there a way to check what is going to be upgraded before running `nixos-rebuild switch --upgrade` ?
<ndowens08> gchristensen: more security to deal with? yay
<ndowens08> I wil do what i can :p
<gchristensen> ndowens08: every day we find new and interesting ways to make insecure software ;)
dhess` has quit [(Ping timeout: 260 seconds)]
<gchristensen> ndowens08: this is (usually) weekly project that got delayed a few weeks ago for a few reasons.
tsmeets[m] has joined #nixos
<ndowens08> i was expecting it wednesday, not today :D
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<gchristensen> ndowens08: ah, see "Hey, it isn't Wednesday" here: https://github.com/NixOS/nixpkgs/issues/24161 :)
Itkovian has joined #nixos
<ndowens08> yep thajt was the one i worked with last time i think
<gchristensen> yep
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to release-17.03: https://git.io/vSkju
<NixOS_GitHub> nixpkgs/release-17.03 6e6af33 Peter Hoeg: minikube: 0.16.0 -> 0.17.1...
<NixOS_GitHub> nixpkgs/release-17.03 ea5800b Dan Peebles: minikube: switch to build from source & fix on Darwin...
mizu_no_oto has joined #nixos
takle has quit [(Remote host closed the connection)]
goibhniu has joined #nixos
<NixOS_GitHub> [nixpkgs] cillianderoiste pushed 1 new commit to master: https://git.io/vSkj7
<NixOS_GitHub> nixpkgs/master 65593e6 Cillian de Róiste: drumgizmo: 0.9.11 -> 0.9.12
stepcut has quit [(Remote host closed the connection)]
pxc has joined #nixos
<ndowens08> gchristensen: so there is no new release to fix libpcre, would it be suitable to diff the file that is affected with the fixed file from svn
<joachifm> ndowens08: have you asked upstream to make a new release?
<pxc> :send-keys f12
<pxc> lol whoops sorry guys
<ndowens08> not yet, the security post says fixed in 8.41 (not released atm)
<pxc> :send-keys f12
<pxc> whyyyyyyyyyyy can't I type
ambro718 has quit [(Ping timeout: 246 seconds)]
<pxc> hey Profpatsch, I just verified that the good behavior you liked from my patch for the programs/fish.nix module carries through to nix-shell invocations as well :-)
<pxc> Profpatsch: if you want to start using it right away, you can just cherry pick the one patch from my PR (I don't think the fish-foreign-env update is strictly required for the other part to work)
<gchristensen> ndowens08: probably not, leave a comment with that information and I'll check in to it later
<joachifm> I wonder why they've not cut a new release. at least some of those issues are said to have been reported upstream quite some time ago.
<joachifm> like 1 month ago
<ndowens08> k
<ndowens08> THought it would be better than what I tried to do last time, one file vs whole repo :)
<gchristensen> joachifm: iirc pcre hasn't issued a release on 8.40 for like 15 years
goibhniu has quit [(Ping timeout: 258 seconds)]
<ndowens08> gchristensen: 8.40 is out, but that is the one listed as affected, while we have 8.39
<gchristensen> I see
<gchristensen> I'll look in a bit, I have meat-space things to do :)
<joachifm> gchristensen: ah, awesome. a c library that parses potentially untrusted inputs with no releases. how does that make sense
zeus_ has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
<globin> ndowens08: it would only make sense to actually add patches from the specific svn revs that fixed the issue(s)
desktop has joined #nixos
desktop is now known as _deepfire
eacameron has quit [(Remote host closed the connection)]
<ndowens08> globin: :) just a thought to make our own since there isnt any fixed version or patch listed
zeus_ has quit [(Remote host closed the connection)]
takle has joined #nixos
eacameron has joined #nixos
zeus_ has joined #nixos
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
zeus__ has joined #nixos
<gchristensen> ndowens08: fwiw making and applying that sort of diff is unlikely to ever be the best solution
<ndowens08> gchristensen: :) k
zeus__ has quit [(Read error: Connection reset by peer)]
<MichaelRaskin> Well, if fetch[VCS type] finds 50% of the time because the upstream VCS server is flaky, and patch is small enough…
zeus__ has joined #nixos
<MichaelRaskin> (and if the VCS server is flaky, the patch is likely to be small because when people commit a lot they have an incentive to fix the VCS setup)
zeus_ has quit [(Ping timeout: 246 seconds)]
<dtz> Haha
takle has quit [(Ping timeout: 258 seconds)]
goibhniu has joined #nixos
<ndowens08> Not sure I am really helping at some of these lol. One just needs I THINK to push the version we have in master to 16.09
<MichaelRaskin> Well, if you submit the reasons for your opinion, it will help the following people make up their mind
<ndowens08> I posted version from master and 16.09 in the post and link showing version we have in master is fine, when looking at a certain post :)
<MichaelRaskin> That may not be definitely, but definitely useful
<MichaelRaskin> not be definitive, I meant
<MichaelRaskin> With the split issues we have many UI questions, but noise inside issues is not one
Ivanych has joined #nixos
<ndowens08> like the version RH pushed to their repo is 0.168, in which we have in master;
<MichaelRaskin> Does the post say if they added any patches?
<ndowens08> when affected is 0.166;
<ndowens08> It stated that next release of software will contain fix
<ndowens08> then following that, was the push to their repo
<MichaelRaskin> I think there was a GCC version, technically not fully compatible with any other version (as usual), that existed _only_ as a RH-patched package (not upstream)
<MichaelRaskin> Ah, that sounds good
<ndowens08> Put link to the post to help others decide atleast
<MichaelRaskin> Yes, that's OK
zeus__ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
zraexy has quit [(Quit: Leaving.)]
goibhniu has quit [(Ping timeout: 258 seconds)]
zraexy has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vSIvr
<NixOS_GitHub> nixpkgs/release-17.03 7724345 Guillaume Maudoux: wrapFirefox: fix default-browser update...
zeus_ has quit [(Ping timeout: 246 seconds)]
zraexy has quit [(Remote host closed the connection)]
jensens has joined #nixos
<ndowens08> bbiab, will continute working on CVE
<ndowens08> ah crap one i got to try to fix was a pain last time lol
<ndowens08> when just trying to update version
zraexy has joined #nixos
marsam has left #nixos ["Killed buffer"]
dhess` has joined #nixos
goibhniu has joined #nixos
xadi has quit [(Quit: Leaving.)]
<NickHu> Can't get haskellPackages.packunused to build - can anyone else reproduce?
zraexy has quit [(Remote host closed the connection)]
dhess` has quit [(Ping timeout: 246 seconds)]
<ben> when i run nixos-rebuild --switch, my resolv.conf gets emptied, networkmanager exits and refuses to start, and nm-applet crashes
<ben> any idea where to start looking at what's wrong?
marsel has joined #nixos
zraexy has joined #nixos
jmaki has quit [(Remote host closed the connection)]
takle has joined #nixos
goibhniu has quit [(Ping timeout: 258 seconds)]
athan has quit [(Remote host closed the connection)]
cfricke has quit [(Quit: WeeChat 1.7)]
takle has quit [(Ping timeout: 260 seconds)]
takle has joined #nixos
carlosdagos has joined #nixos
ambro718 has joined #nixos
takle has quit [(Ping timeout: 264 seconds)]
goibhniu has joined #nixos
carlosdagos has quit [(Ping timeout: 260 seconds)]
cptchaos has joined #nixos
jluttine has quit [(Ping timeout: 256 seconds)]
jluttine has joined #nixos
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] cko opened pull request #24329: nodejs-4_x: 4.6.0 -> 4.8.1 (master...nodejs-4_8_1) https://git.io/vSIJ9
ryanartecona has quit [(Quit: ryanartecona)]
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
goibhniu has quit [(Ping timeout: 258 seconds)]
mizu_no_oto has joined #nixos
cptchaos has quit [(Ping timeout: 260 seconds)]
goibhniu has joined #nixos
spinus has quit [(Remote host closed the connection)]
stepcut has joined #nixos
stepcut_ has joined #nixos
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
<fresheyeball> happy saturday nixers
<fresheyeball> who wants to help me learn?
<fresheyeball> everyone?
<fresheyeball> I assume everyone
stepcut has quit [(Ping timeout: 246 seconds)]
PenguinOfDoom has left #nixos []
<NixOS_GitHub> [nixpkgs] jb55 opened pull request #24330: rss2email: init at 3.9 (master...rss2email) https://git.io/vSITq
goibhniu has quit [(Ping timeout: 258 seconds)]
<justanotheruser> fresheyeball: you should ask a question
<fresheyeball> justanotheruser: ok, so I have vm for learning, and in that vm I have a nix file I am trying to install
<fresheyeball> justanotheruser: the file looks like this
dhess` has joined #nixos
dhess has left #nixos ["ERC (IRC client for Emacs 25.1.2)"]
<fresheyeball> I commented out most of the haskell packages I want to figure out why its failing
<fresheyeball> justanotheruser: cabal-helper fails to compile
<fresheyeball> I just don't know what to do in this scenario. So far everything I install just works. But not Haskell packages.
<fresheyeball> can I specify an earlier version?
<fresheyeball> What is the right approach to deal with this?
<justanotheruser> what is the error?
<fresheyeball> replacing old ‘myEnv’
<fresheyeball> installing ‘myEnv’
<fresheyeball> these derivations will be built:
<fresheyeball> /nix/store/za496g7zf0ljmh6p2fyfwnhh30hp9hbh-cabal-helper-0.7.2.0.drv
<fresheyeball> /nix/store/wjsqp3z3zjq78ifd2zjqd76fi2d5swhg-myEnv.drv
<fresheyeball> building path(s) ‘/nix/store/ih5q8vcyi1fn9w7w3va5xgjgrvgh4lyh-cabal-helper-0.7.2.0’
<fresheyeball> setupCompilerEnvironmentPhase
<fresheyeball> Build with /nix/store/33ni5a3zghhwvv33wgn218j4d54qfkc0-ghc-8.0.2.
<justanotheruser> please use pastebin
<fresheyeball> unpacking sources
<fresheyeball> unpacking source archive /nix/store/jli61a93kbrnc16bd587hpm8hay2dmrf-cabal-helper-0.7.2.0.tar.gz
<fresheyeball> source root is cabal-helper-0.7.2.0
<fresheyeball> setting SOURCE_DATE_EPOCH to timestamp 1469797382 of file cabal-helper-0.7.2.0/tests/Spec.hs
<fresheyeball> patching sources
<fresheyeball> compileBuildDriverPhase
<fresheyeball> setupCompileFlags: -package-db=/tmp/nix-build-cabal-helper-0.7.2.0.drv-0/package.conf.d -j1 -threaded
<fresheyeball> [1 of 1] Compiling Main ( Setup.hs, /tmp/nix-build-cabal-helper-0.7.2.0.drv-0/Main.o )
<fresheyeball> Linking Setup ...
<justanotheruser> smh
<fresheyeball> configuring
<fresheyeball> configureFlags: --verbose --prefix=/nix/store/ih5q8vcyi1fn9w7w3va5xgjgrvgh4lyh-cabal-helper-0.7.2.0 --libdir=$prefix/lib/$compiler --libsubdir=$pkgid --with-gcc=gcc --package-db=/tmp/nix-build-cabal-helper-0.7.2.0.drv-0/package.conf.d --ghc-option=-optl=-Wl,-rpath=/nix/store/ih5q8vcyi1fn9w7w3va5xgjgrvgh4lyh-cabal-helper-0.7.2.0/lib/ghc-8.0.2/cabal-helper-0.7.2.0 --ghc-option=-j1 --enable-split-objs --disable-library-profiling --
<fresheyeball> disable-profiling --enable-shared --enable-library-vanilla --enable-executable-dynamic --disable-tests
<fresheyeball> Configuring cabal-helper-0.7.2.0...
<fresheyeball> Setup: Encountered missing dependencies:
<fresheyeball> directory >=1.1.0.2 && <1.3
<fresheyeball> builder for ‘/nix/store/za496g7zf0ljmh6p2fyfwnhh30hp9hbh-cabal-helper-0.7.2.0.drv’ failed with exit code 1
stepcut_ has quit [(Remote host closed the connection)]
<fresheyeball> cannot build derivation ‘/nix/store/wjsqp3z3zjq78ifd2zjqd76fi2d5swhg-myEnv.drv’: 1 dependencies couldn't be built
<fresheyeball> error: build of ‘/nix/store/wjsqp3z3zjq78ifd2zjqd76fi2d5swhg-myEnv.drv’ failed
<fresheyeball> justanotheruser: oops
<fresheyeball> sorry sec
<fresheyeball> justanotheruser: I have muscle memory from stack. Not good for IRC.
<justanotheruser> stack will autopastebin it?
<gchristensen> you could use irccloud.com which will auto-pastebin stuff for you
<gchristensen> justanotheruser: slack has multi-line messages
<justanotheruser> oh
<ndowens08> why does git always give me could not resolve github.com , sigh
<ndowens08> in nixpkgs
<justanotheruser> sounds like hsLib.cabal-helper has a misconfigured dependency
<justanotheruser> dunno where it is defined though
dhess` has quit [(Ping timeout: 264 seconds)]
stepcut has joined #nixos
goibhniu has joined #nixos
<MichaelRaskin> ndowens08: you mean inside a build?
<ndowens08> through builder.sh because irssi has weird issues if it isnt done through git clone (new version) to fix a CVE
<MichaelRaskin> Well, builds are sandboxed, they don't have /etc/resolv.conf, for example
<fresheyeball> justanotheruser: what do I do though?
stepcut has quit [(Remote host closed the connection)]
<fresheyeball> I want to be taught to fish, not given fish
<ndowens08> ah that makes sense MichaelRaskin , so is there a way around it?
<justanotheruser> fresheyeball: where is cabal-helper defined?
<justanotheruser> it's not a nix package, is it?
rbl has joined #nixos
<MichaelRaskin> Well, fetchgit/fetchFromGitHub, echo-ing stuff into files that would be generated using git, patching Makefiles, and we are drifting towards wider use of fake git
<fresheyeball> justanotheruser: it is look at the .nix file. Its pkgs.haskell.packages.ghc802.cabal-helper
eacameron has quit [(Remote host closed the connection)]
eacameron has joined #nixos
ertesx has joined #nixos
goibhniu has quit [(Ping timeout: 258 seconds)]
<ndowens08> MichaelRaskin: never done that before; I learn by looking at examples, do you know of one that does that?
ertes has quit [(Ping timeout: 240 seconds)]
ertesx is now known as ertes
<MichaelRaskin> Which one?
<ndowens08> the method to use git to clone inside a builder.sh or so.
<ndowens08> like 1.0.2 uses git to create docs/makefile.in and do other things
<MichaelRaskin> There is no way to use git clone inside, but you can feed a ready clone using fetchgit
<MichaelRaskin> Well, xen does use fake git inside the build
<ndowens08> hmm will look at that one
<MichaelRaskin> A lot of time you just echo "1.2.0.20170322" >> version.txt or something like that
<fresheyeball> justanotheruser: I am a noob. What am I to make of that link?
eacameron has quit [(Remote host closed the connection)]
eacameron has joined #nixos
goibhniu has joined #nixos
ryantrinkle has quit [(Ping timeout: 260 seconds)]
stepcut has joined #nixos
stepcut has quit [(Remote host closed the connection)]
byteflame has joined #nixos
stepcut has joined #nixos
<NixOS_GitHub> [nixpkgs] basvandijk opened pull request #24331: ssmtp: use the authPassFile option instead of authPass (master...ssmtp-AuthPassFile) https://git.io/vSIII
byteflame has quit [(Ping timeout: 268 seconds)]
stepcut has quit [(Ping timeout: 260 seconds)]
MP2E has joined #nixos
goibhniu has quit [(Ping timeout: 258 seconds)]
<justanotheruser> fresheyeball: this may be an issue with cabal https://github.com/haskell/cabal/issues/3199
<justanotheruser> as suggested, maybe you can override https://github.com/NixOS/nixpkgs/blob/d0922896bee8fba5689e6a3180c63ab9fff7e447/pkgs/development/haskell-modules/generic-builder.nix#L109 so the --constraint argument is used
stepcut has joined #nixos
<fresheyeball> justanotheruser: maybe a more simple question
<justanotheruser> maybe you could ask in cabal or haskell
<fresheyeball> how do I get thinks like `dontCheck` and `cabalOverride` into the namespace of my nix file
<fresheyeball> ?
<ndowens08> omg, so close to getting new irssi version to build
<fresheyeball> justanotheruser: ok, how do I get that in my namespace?
<justanotheruser> with import ./lib.nix { inherit pkgs; }; in the haskell-modules directory
pxc has quit [(Ping timeout: 260 seconds)]
<LnL> fresheyeball: haskell.lib.overrideCabal
<justanotheruser> that too
<NixOS_GitHub> [nixpkgs] cillianderoiste pushed 1 new commit to master: https://git.io/vSIIX
<NixOS_GitHub> nixpkgs/master e3938c8 Cillian de Róiste: drumkv1: 0.8.0 -> 0.8.1
<NixOS_GitHub> [nixpkgs] WilliButz opened pull request #24332: manticore: fix compiling pml sources (master...master) https://git.io/vSIID
stepcut has quit [(Remote host closed the connection)]
dhess` has joined #nixos
takle has quit [(Remote host closed the connection)]
<fresheyeball> justanotheruser: http://lpaste.net/353920
<fresheyeball> so I got the lib utils atleast
reinzelmann has joined #nixos
<fresheyeball> but now it says `buildDeps` is an unexpected argument
stepcut has joined #nixos
<fresheyeball> how can I override to get directory in there so it can compile?
dhess` has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to master: https://git.io/vSILi
<NixOS_GitHub> nixpkgs/master 53dde42 Willi Butz: manticore: fix compiling pml sources...
<NixOS_GitHub> nixpkgs/master 84c4ea3 Robin Gloster: Merge pull request #24332 from WilliButz/master...
Willi_Butz is now known as WibliBulz
WibliBulz is now known as Willi_Butz
carlosdagos has joined #nixos
carlosdagos has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/vSILN
<NixOS_GitHub> nixpkgs/master a616f4e uwap: prosody: 0.9.10 -> 0.9.12 (#24269)
m0rphism2 has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vSILx
<NixOS_GitHub> nixpkgs/release-17.03 fc7b87a Willi Butz: manticore: fix compiling pml sources...
tsmeets has joined #nixos
<NixOS_GitHub> [nixpkgs] cko opened pull request #24334: NixOS Manual: Update version numbers (master...update_docu) https://git.io/vSItU
Rotaerk has quit [(Quit: Leaving)]
Rotaerk has joined #nixos
m0rphism2 has joined #nixos
<fresheyeball> is there a way I can override which version of a package another derivation is using?
<fresheyeball> this works to get cabal-helper to build
<fresheyeball> cabal-helper = hsLib.doJailbreak (hsLib.addBuildDepend hsPkg.cabal-helper hsPkg.directory);
thip has joined #nixos
odi_ has joined #nixos
<fresheyeball> but ghc-mod complains of the same problem
<fresheyeball> and its not portable
<fresheyeball> ghc-mod = hsLib.doJailbreak (hsLib.addBuildDepend hsPkg.ghc-mod hsPkg.directory);
<fresheyeball> does not fix it, ghc-mod's build still says it fails with cabal-helper
eacameron has quit [(Ping timeout: 257 seconds)]
odi_ has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] pSub pushed 2 new commits to master: https://git.io/vSItE
<NixOS_GitHub> nixpkgs/master c0d9bce Tim Steinbach: kotlin: 1.1 -> 1.1.1.
<NixOS_GitHub> nixpkgs/master 0ac3011 Pascal Wittmann: Merge pull request #24324 from NeQuissimus/kotlin_1_1_1...
goibhniu has joined #nixos
eacameron has joined #nixos
eacameron has quit [(Remote host closed the connection)]
<ndowens08> omg, i did it lol
<MichaelRaskin> irssi?
marsel has quit [(Quit: WeeChat 1.7)]
<ben> sweet i managed to get into a state where X won't start bc of nvidia driver version mismatch
<ndowens08> yup
<ndowens08> last step was to remove doc install because the Makefile is crappy and install them manually
<ben> Is that state literally "have upgraded nvidia driver but not rebooted" or something
<ivan> ben: yes
<ben> that seems suboptimal
<ivan> yes
<ben> :+1:
<ivan> you can keep X running but if you restart chrome it runs without gpu acceleration
<ben> I tried to restart dbus by killing dbus-launch but I guess that doesn't exactly put my session into a recoverable state
<MichaelRaskin> !m ndowens08
<[0__0]> You're doing good work, ndowens08!
<ben> so I exited openbox and landed in "i broke X" mode
MP2E has quit [(Quit: leaving)]
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to master: https://git.io/vSIqJ
<NixOS_GitHub> nixpkgs/master b00cfd4 Franz Pletz: irssi: 1.0.1 -> 1.0.2 for CVE-2017-7191...
marsel has joined #nixos
zraexy has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] fpletz pushed 1 new commit to release-17.03: https://git.io/vSIqI
<NixOS_GitHub> nixpkgs/release-17.03 d3124a5 Franz Pletz: irssi: 1.0.1 -> 1.0.2 for CVE-2017-7191...
<ndowens08> no fpletz ! lol
<ndowens08> i was working on that and took so much time on it lol
marsel has quit [(Client Quit)]
marsel has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
<MichaelRaskin> Did they produce the official point release after you started working on git-version update?
Itkovian has joined #nixos
<ndowens08> MichaelRaskin: talking to me?
<MichaelRaskin> Yes
<ndowens08> irssi 1.0.2 was out when i was going through updating
pxc has joined #nixos
<ndowens08> but i couldnever figure out how to fix it
<ndowens08> and now i get it working and fpletz beat me to it lol
<MichaelRaskin> Heh
<fpletz> ndowens08: fix what? %)
<ndowens08> irssi
<ndowens08> i was updating it lol
<ndowens08> i tried sometime ago and today spent time and figured out how to do it and yea :p
<fpletz> eh, wasn't it working with just that bump?
<ndowens08> nope
<fpletz> did I forget something? :)
<fpletz> wat
<ndowens08> it wouldnt build at all, it expected git
<ndowens08> to get version and build docs
<fpletz> why did you want to build the git version?
<ndowens08> not git version, but release listed on github
froglegstew has quit [(Ping timeout: 240 seconds)]
<ndowens08> you know, rev = v${version}
<fpletz> they're probably shipping tarballs with ready-to-use configure script (they ran autogen.sh)
<fpletz> that's the common thing to do if you're using autotools
froglegstew has joined #nixos
<ndowens08> hmm, i know irssi.org to get irssi points to the github page; so I was using the version listed in the releases
<ndowens08> but oh well, now I can move on to try and fix another security one
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/7b706900e7dd3ec55eb46a366f0bc47858fb7633
<NixOS_GitHub> nixpkgs/master 7b70690 Michael Raskin: graphicsmagick: patch for CVE-2017-6335
<domenkozar> bu47
slack1256 has joined #nixos
<domenkozar> blah :)
<ndowens08> fpletz: i was thinking no!!! I finally got it lol
pxc has quit [(Ping timeout: 240 seconds)]
ryantrinkle has joined #nixos
<ndowens08> fpletz: you can close it, you pushed 1.0.2 :)
<ndowens08> on irssi
<fpletz> yeah, but graham stills needs to update his database ;)
<ndowens08> ah ok :)
<fpletz> clicked the wrong button :)
dhess` has joined #nixos
takle has joined #nixos
<MichaelRaskin> I thought the DB update is a mass procedure that takes into account the closed-status of issues?
eacameron has joined #nixos
<fpletz> could be, haven't looked at gchristensen's code yet
<MichaelRaskin> Could be not yet complete, though
slyfox_ has joined #nixos
slyfox has quit [(Ping timeout: 246 seconds)]
<MichaelRaskin> I know that constructing the CC list is not yet done
<ndowens08> hmm this one says version x is affected, in which we have, but there is a newer version available; looking at the upstream commit history; no mention of fixing CVE
<MichaelRaskin> (I guess my shell one-liner that was used for the current roundup won't get integrated as-is)
<MichaelRaskin> Unfortunately, that's normal
<ndowens08> Only thing i know is to update jasper to the lateast version, but IDK if it actually fixes the CVE
<ndowens08> wait, hmm this is for a buffer-overflow
<ndowens08> just found a commit saying Added some additional checking to prevent a potential integer overflow. So maybe?
<NixOS_GitHub> [nixpkgs] pSub closed pull request #24276: yadm: 1.05 -> 1.07 (master...yadm-1.07) https://git.io/vSUlc
rbl has left #nixos ["Leaving"]
eacameron has quit [(Ping timeout: 264 seconds)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to release-17.03: https://git.io/vSIme
<NixOS_GitHub> nixpkgs/release-17.03 a8baac6 Michael Raskin: graphicsmagick: patch for CVE-2017-6335...
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to release-16.09: https://github.com/NixOS/nixpkgs/commit/065343bf7cba327dc3873365da9e4f5775edd954
<NixOS_GitHub> nixpkgs/release-16.09 065343b Michael Raskin: graphicsmagick: patch for CVE-2017-6335...
<NixOS_GitHub> [nixpkgs] pSub pushed 2 new commits to master: https://git.io/vSImf
<NixOS_GitHub> nixpkgs/master 97ca8d1 rbasso: exercism: 2.3.0 -> 2.4.0
<NixOS_GitHub> nixpkgs/master 827d48e Pascal Wittmann: Merge pull request #24321 from rbasso/exercism-2.4.0...
eacameron has joined #nixos
dhess` has quit [(Ping timeout: 260 seconds)]
<fresheyeball> so a package that was installing fine a moment ago
<fresheyeball> is now failing
<fresheyeball> it says could not download from any mirror with 404
<fresheyeball> is that normal?
<MichaelRaskin> Is there any logic to whether the bot shortes the git URL??
<MichaelRaskin> fresheyeball: not really, but depends… Any details?
<fresheyeball> MichaelRaskin: its google-chrome
<MichaelRaskin> Ouch
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24335: jasper: 2.0.10 -> 2.0.12 (master...jasper) https://git.io/vSIYY
<MichaelRaskin> I wonder if Google released a new version and just removed the old ones
* slack1256 learns nix-copy-closure needs root priviledges otherwise weird sign error messages are displayed
<MichaelRaskin> fresheyeball: what platform?
andymandias has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
marsel has quit [(Quit: WeeChat 1.7)]
<fresheyeball> MichaelRaskin: nixos
<MichaelRaskin> No, CPU arch
<MichaelRaskin> I have just downloaded to /nix/store/j9gg9jq5kwkgf2iwxd43sg706kr619c2-google-chrome-stable_57.0.2987.110-1_amd64.deb
<fresheyeball> MichaelRaskin: http://lpaste.net/4251067559094255616
eacameron has quit [(Remote host closed the connection)]
stepcut has quit [(Remote host closed the connection)]
marsel has joined #nixos
goibhniu has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] LnL7 closed pull request #24329: nodejs-4_x: 4.6.0 -> 4.8.1 (master...nodejs-4_8_1) https://git.io/vSIJ9
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<NixOS_GitHub> [nixpkgs] edwtjo pushed 3 new commits to master: https://git.io/vSIYF
<NixOS_GitHub> nixpkgs/master 958668a Edward Tjörnhammar: nixos, openafs-client: correct serviceConfig
<NixOS_GitHub> nixpkgs/master 2db5c5c Edward Tjörnhammar: jackett: init at 0.7.1197 + nixos module
<NixOS_GitHub> nixpkgs/master b35d22b Edward Tjörnhammar: radarr: init at 0.2.0.553 + nixos module
endformationage has joined #nixos
<ndowens08> fpletz: I am unsure if that update I did for jasper fixes the CVE or not :\
<MichaelRaskin> fresheyeball: you have older version than in master
<MichaelRaskin> Looks like Google has removed the old version
<fresheyeball> can I override in my nix file?
goibhniu has joined #nixos
<MichaelRaskin> Probably just by overrideDerivation on src, yes
<MichaelRaskin> Where src can be taken from the latest master
Wizek__ has quit [(Read error: Connection reset by peer)]
tsmeets has quit [(Quit: leaving)]
Wizek_ has quit [(Ping timeout: 260 seconds)]
eacameron has joined #nixos
byteflame has joined #nixos
eacameron has quit [(Read error: Connection reset by peer)]
eacameron has joined #nixos
byteflame has quit [(Ping timeout: 258 seconds)]
<fresheyeball> MichaelRaskin: what do you mean src can be taken from the latest master?
marusich has joined #nixos
roconnor has quit [(Quit: Konversation terminated!)]
Itkovian has joined #nixos
eacameron has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to master: https://github.com/NixOS/nixpkgs/commit/5e0cbbbdb6600335dde8c25b25c62a329b02c284
<NixOS_GitHub> nixpkgs/master 5e0cbbb Jörg Thalheim: keepassx-community: 2.1.2 -> 2.1.3...
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.03: https://git.io/vSI3k
<NixOS_GitHub> nixpkgs/release-17.03 8ce595f Jörg Thalheim: keepassx-community: 2.1.2 -> 2.1.3...
<MichaelRaskin> Well, simpler
<NixOS_GitHub> [nixpkgs] edwtjo pushed 1 new commit to master: https://git.io/vSI33
<NixOS_GitHub> nixpkgs/master dc514b2 Edward Tjörnhammar: i2pd: 2.11.0 -> 2.12.0
<MichaelRaskin> Then stdenv.lib.overrideDerivation google-chrome (x: {src="/nix/store/j9gg9jq5kwkgf2iwxd43sg706kr619c2-google-chrome-stable_57.0.2987.110-1_amd64.deb";})
<MichaelRaskin> (I hope I am not making a trivial typo somewhere)
<fresheyeball> builder for ‘/nix/store/aq26cksnw1h5wd5r1aqw4pcd1hpwhccx-google-chrome-55.0.2883.87.drv’ failed with exit code 9
<fresheyeball> unpacking sources
<fresheyeball> ar: /nix/store/j9gg9jq5kwkgf2iwxd43sg706kr619c2-google-chrome-stable_57.0.2987.110-1_amd64.deb: No such file or directory
<MichaelRaskin> Did you do nix-prefetch-url?
simendsjo has joined #nixos
<fresheyeball> MichaelRaskin: no, what is that?
pxc has joined #nixos
<MichaelRaskin> Could you just checkout the master from github and do nix-env -f /path/to/master/nixpkgs -A google-chrome -i?
<MichaelRaskin> nix-prefetch-url downloads a remote file into /nix/store and prints the hash, I think it is described in NixPkgs manual
<simendsjo> I'm having problems building a custom kernel module. How can I setup the environment so /lib/modules/kernelversion/build exists? I'm already using with import <nixpkgs> { }; at the top of my file, but `kernel` isn't imported.
justan0theruser has joined #nixos
athan has joined #nixos
noam has joined #nixos
m0rphism3 has joined #nixos
<clever-afk> simendsjo: i saw something about that on an issue, one min
justanotheruser has quit [(Ping timeout: 240 seconds)]
m0rphism2 has quit [(Ping timeout: 258 seconds)]
<clever-afk> simendsjo: https://github.com/NixOS/nixpkgs/issues/14721 this is it
pxc has quit [(Ping timeout: 258 seconds)]
<gchristensen> fpletz: go ahead and close issuees :)
<gchristensen> globin: ^
pxc has joined #nixos
<gchristensen> I have a tool to reconcile my DB with closed issues
<MichaelRaskin> I dunno, maybe I want to be able to close issues at some point
<MichaelRaskin> Right now I am not doing much, though
<simendsjo> clever-afk: I still have no idea how to get access to this kernel variable. Trying to search the nixpkg repo, but I'm searching pretty blind here - haven't read through too much nix/nixos yet.
dhess` has joined #nixos
carlosdagos has joined #nixos
Rotaerk has quit [(Quit: Leaving)]
<NixOS_GitHub> [nixpkgs] sjmackenzie opened pull request #24338: current rustRegistry doesn't have the clap 2.22.1 (master...rustRegistry_bump) https://git.io/vSIGw
carlosdagos has quit [(Ping timeout: 240 seconds)]
dhess` has quit [(Ping timeout: 268 seconds)]
rotaerk has joined #nixos
ilyaigpetrov has joined #nixos
stepcut has joined #nixos
<NixOS_GitHub> [nixpkgs] vcunat pushed 1 new commit to release-16.09: https://github.com/NixOS/nixpkgs/commit/a8b75d7d3c807af9f7b990f5bd11c394481c2af6
<NixOS_GitHub> nixpkgs/release-16.09 a8b75d7 Will Dietz: elfutils: security 0.165 -> 0.168...
eacameron has joined #nixos
rotaerk has quit [(Remote host closed the connection)]
eacameron has quit [(Remote host closed the connection)]
<mounty> Can anyone suggest what's wrong with my hydra server? When I run hydra-server, it outputs:
<mounty> [warn] Unicode::Encoding plugin is auto-applied, please remove this from your appclass and make sure to define "encoding" config
<mounty> DEPRECATION WARNING: The Regex dispatch type is deprecated.
rotaerk has joined #nixos
<mounty> It is recommended that you convert Regex and LocalRegex
<mounty> methods to Chained methods. at /nix/store/8wgq8vy1lqf54ckirvcfzhjd8wbh3akn-hydra-perl-deps/lib/perl5/site_perl/5.22.2/Catalyst/DispatchType/Regex.pm line 210.
<mounty> 2017/03/26-07:30:03 Starman::Server (type Net::Server::PreFork) starting! pid(23398)
<mounty> Resolved [*]:3000 to [0.0.0.0]:3000, IPv4
<mounty> Binding to TCP port 3000 on host 0.0.0.0 with IPv4
<mounty> Setting gid to "0 0 0"
<mounty> Starman: Accepting connections at http://*:3000/
<mounty> (Hope that's not too much noise on the channel)
<mounty> When I try to connect on another browser to http://192.168.1.113:3000 it just hangs
<mounty> I can ssh to someuser@192.168.1.113 so I know the machine is accessible.
<mounty> Sorry, when I say 'another browser' I mean a browser on another machine.
rotaerk has quit [(Client Quit)]
eacameron has joined #nixos
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
eacameron has quit [(Remote host closed the connection)]
<mounty> I'm not too worried about those warnings unless they're relevant but ISTM they are just about deprecated code.
xadi has joined #nixos
Itkovian has joined #nixos
Rotaerk has joined #nixos
eacameron has joined #nixos
<justan0theruser> I installed tensorflowWithCuda and when I attempt to "import tensorflow" in python3, I get ImportError: libcudart.so.8.0: cannot open shared object file: No such file or directory. This github issue (https://github.com/tensorflow/tensorflow/issues/5625) involves using a different version, but I'm not sure that applies to me given the current tensorflow version through nixos is 1.0.0. Any suggestions? This is
<simendsjo> I was able to build it manually using `nix-shell '<nixpkgs>' -A linuxPackages.kernel`, modifying `Makefile`, and patching up compile errors. Doing insmod, I get a message `rtusb init rt2870` and `usbcore: registered new interface driver rt2870`. I still cannot see the device though.. The ra0 link should have been created. And this is obviously a big hack anyway... :(
<Ralith> mounty: if you're running a network service on machine A and machine B can't reach it, check your firewall
<slack1256> on the haskell-modules, jailbreak means that a build will omit upper bound checking?
eacameron has quit [(Remote host closed the connection)]
eacameron has joined #nixos
eacameron has quit [(Remote host closed the connection)]
<Unode> If I wanted to keep the packages required for using 'vmTools.runInLinuxVM' installed and prevent garbage collection from removing them, what packages should I keep on a profile?
byteflame has joined #nixos
Rotaerk has quit [(Quit: Leaving)]
eacameron has joined #nixos
hiratara has quit [(Ping timeout: 246 seconds)]
<mounty> Ralith: my firewall is set up to allow all internal traffic and as I say, ssh is working. Also working are NFS, IMAP, Postgres etc.
<Ralith> ssh auto-adds a firewall exception, mostly to make it very difficult to lock yourself out by accident
<Ralith> I'm not sure what you mean by "internal," since I'm talking about the firewall on machine A
<mounty> ssh can only do that to its local machine though. ssh is running on my (*Linux) workstation(s) but my firewall is on my (OmniOS) server.
hiratara has joined #nixos
byteflame has quit [(Ping timeout: 264 seconds)]
<mounty> Ralith: thanks but I'm sure it cannot be that. In any case, I have httped from one machine to another, locally, just not to the new nixos machine, yet.
<mounty> Maybe I should build my (web) application on nixos and run it, to demonstrate http connectivity to it.
<Ralith> again, I'm talking about the firewall on the workstation
<mounty> Yes; good plan.
<mounty> I don't run firewalls on the workstations.
<MichaelRaskin> Unode: what about defining a trivial test and using its output?
<mounty> Does nixos run a firewall by default ?
<gchristensen> yes
<mounty> Ahh... gotcha.
<mounty> OK, quick help then please ... open port 3000 ?
<Unode> MichaelRaskin: I tried storing the result of nix-build hello using vmTools but the derivation doesn't seem to keep a dependency on vmTools itself so garbage collector still removed it.
eacameron has quit [(Remote host closed the connection)]
<MichaelRaskin> gc-keep-derivations = true
<MichaelRaskin> gc-keep-outputs = true
<MichaelRaskin> Do you have this in nix.conf?
<Unode> one of them I'm sure I do. Checking
<Unode> he first I didn't
<Unode> *the
reinzelmann has quit [(Quit: Leaving)]
<MichaelRaskin> nix.extraOptions should be the place to add this option
pdobrogost has quit [(Quit: Connection closed for inactivity)]
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.03: https://git.io/vSInd
<NixOS_GitHub> nixpkgs/release-17.03 41894d5 ndowens: potrace: 1.13 -> 1.14...
<Unode> MichaelRaskin: how so?
xadi has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
xadi has joined #nixos
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-16.09: https://git.io/vSInp
<NixOS_GitHub> nixpkgs/release-16.09 075e6d4 ndowens: potrace: 1.13 -> 1.14...
<MichaelRaskin> On NixOS nix.conf should not be editable directly
<Unode> ah, I'm not on nixos
<Unode> so nix.conf is fine
<mounty> Thanks Ralith and gchristensen; running now.
<NixOS_GitHub> [nixpkgs] vcunat pushed 1 new commit to master: https://git.io/vSIce
<NixOS_GitHub> nixpkgs/master 8c4339a Vladimír Čunát: texlive: fix CVE-2016-10243...
<NixOS_GitHub> [nixpkgs] vcunat pushed 1 new commit to release-17.03: https://github.com/NixOS/nixpkgs/commit/02694562eed811e8acf2debbbd9bb889764e6524
<NixOS_GitHub> nixpkgs/release-17.03 0269456 Vladimír Čunát: texlive: fix CVE-2016-10243...
stepcut has quit [(Remote host closed the connection)]
eacameron has quit [(Remote host closed the connection)]
<Ralith> mounty: for future reference, `sudo netstat -lntp` is a good way to debug whether/how something's actually listening, and then you can use `socat` from various places to determine low-level reachability empirically
<fresheyeball> ok
<fresheyeball> lets say I want to install a kde theme
<fresheyeball> do I do that with nix?
simendsjo has quit [(Quit: ERC (IRC client for Emacs 24.5.2))]
<NixOS_GitHub> [nixpkgs] vcunat pushed 1 new commit to release-16.09: https://git.io/vSIcs
<NixOS_GitHub> nixpkgs/release-16.09 98d8770 Vladimír Čunát: texlive: fix CVE-2016-10243...
stepcut has joined #nixos
dhess` has joined #nixos
<mounty> Thanks Ralith; good tip.
eacameron has joined #nixos
eacameron has quit [(Ping timeout: 268 seconds)]
drasich has joined #nixos
deepfire has joined #nixos
rotaerk has joined #nixos
dhess` has quit [(Ping timeout: 260 seconds)]
Acou_Bass has quit [(Ping timeout: 240 seconds)]
Piece_Maker has joined #nixos
Piece_Maker is now known as Acou_Bass
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
pxc has quit [(Ping timeout: 256 seconds)]
hiratara has quit [(Quit: ZNC - http://znc.in)]
hiratara has joined #nixos
slack1256 has quit [(Ping timeout: 240 seconds)]
marsel has quit [(Ping timeout: 264 seconds)]
Jackneill has quit [(Remote host closed the connection)]
stepcut has quit [(Remote host closed the connection)]
stepcut has joined #nixos
deepfire has quit [(Remote host closed the connection)]
thc202 has quit [(Ping timeout: 240 seconds)]
deepfire has joined #nixos
stepcut has quit [(Ping timeout: 240 seconds)]
Rotaerk_ has joined #nixos
jensens has quit [(Ping timeout: 240 seconds)]
Rotaerk_ has quit [(Client Quit)]
ryantrinkle has quit [(Ping timeout: 260 seconds)]
<ndowens08> Anyone use mxt-app for atmel maxtouch devices, wondering if my update in a PR is fine
carlosdagos has joined #nixos
stepcut has joined #nixos
dhess` has joined #nixos
periklis has quit [(Ping timeout: 256 seconds)]
prim0 has joined #nixos
pxc has joined #nixos
Hoffman has joined #nixos
carlosdagos has quit [(Ping timeout: 246 seconds)]
erasmus has joined #nixos
prim0 has left #nixos ["Limnoria 2017.01.10"]
marsam has joined #nixos
<ndowens08> Git gurus: tell me if I understand merge correctly; If I work on Branch A, and want to take the changes to master, git checkout master, git merge A would merge branch A into master?
systemfault has joined #nixos
<ndowens08> Seems like it anyway, makes sense
<joachifm> that's normally how it works
erasmus has left #nixos ["Jack's Back"]
Hoffman has left #nixos ["part"]
<ndowens08> Thx joachifm , thought that was right :) Trying to understand git better
dhess` has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] periklis opened pull request #24340: [WIP] qt58: extend darwin compatibility (master...topic_qt58_modules) https://git.io/vSIlP
<joachifm> ndowens08: have you looked at the git book?
<ndowens08> hmm dont think so; I have been mostly catching on through bits and pieces here and there.
<ndowens08> if it is phone friendly, that'd be nice :)
<joachifm> ndowens08: https://git-scm.com/book/en/v2
<joachifm> I think it's still considered one of the better resources
<joachifm> (I don't know of any better all-round reference, at any rate ... but I don't actively keep up)
<ndowens08> ah, well some of the bits and pieces of searching led me to this, atleast chapters
<mounty> Anyone using stack on nixos? I tried this just now. User is jackrose-ci and $HOME=/home/jackrose-ci
<mounty> $ stack build --verbosity warn --allow-different-user --install-ghc --haddock
<dmj`> mounty: why use stack w/ nix
<mounty> dmj`: Because I'm building a nixos/hydra-based CI server so have to start by building the application.
eacameron has joined #nixos
<gchristensen> mounty: *perks up* oh?
<mounty> Am I doing something wrong/stupid/unexpected ?
<gchristensen> no a nixos/hydra-based CI server is intteresting to me. I'd like to know more.
<ndowens08> I would say it is b/c travis is not reliable lol
<dmj`> mounty: if it builds with stack it has a cabal file, so you can generate a nix expression from it, and build it that way
<mounty> Well, er, that's it. I've installed nixos in a qemu-kvm VM, then installed hydra within that. Now I want to set up a full CI project.
<mounty> I don't like travis because I want to keep the CI in-house.
<dmj`> yea, I can’t imagine trying to use hydra w/o nixos
<mounty> There are too many examples of companies like Amazon, Paypal etc. just deciding that you're violating their ToS and pulling your account.
<mounty> I'm not doing anything dodgy but that doesn't stop them.
<gchristensen> fair enough
<mounty> They do the pulling really quickly then take ages to reinstate. Thanks, but I don't wish to participate.
<joepie91> mounty: "Our investigation has showed that you have violated our Terms of Service. <end of message>"
<dmj`> mounty: why don’t you just put nixos on a machine in your house then, access your hydra over the internet
<joepie91> always fun when one of the Internet Companies refuses to tell you why you've been suspended...
<joepie91> Big Internet Companies
<joepie91> *
<mounty> joepie91 exactly. But their investigation was a misunderstood troll message on some forum.
eacameron has quit [(Ping timeout: 264 seconds)]
<joepie91> mounty: oh yes, but they'll never tell you that :)
<joepie91> (I share your bitterness about suspension policies at big internet companies :P)
<joepie91> I'm still kind of amazed that these companies are getting away with having absolutely no customer service at all *whatsoever*, but I shall end my rambling and ranting here in favour of more on-topic topics ;)
<MichaelRaskin> I think you are assuming too much foundation in their suspension decisions. An entire troll post?
<MichaelRaskin> Isn't a bad roll of RNG enough anymore?
<gchristensen> go forth and start a better business, based on nixos, joepie91
<mounty> OK, so having established the desirability of not depending on the benificence of 3rd party companies, I have a VM running nixos running hydra.
<mounty> So I'm playing around making sure that hydra can do the second step; namely build the software.
<NixOS_GitHub> [nixpkgs] abbradar pushed 2 new commits to master: https://git.io/vSI8l
<NixOS_GitHub> nixpkgs/master 99434ab Nikolay Amiantov: ibus: wrap with GTK dependencies...
<NixOS_GitHub> nixpkgs/master 66b05cd Nikolay Amiantov: ibus-engines: use wrapPythonPrograms...
<mounty> (the first step being to clone the git suppository of course)
<mounty> $ stack build --verbosity warn --allow-different-user --install-ghc --haddock
<mounty> Already downloaded.
<mounty> Running /home/jackrose-ci/.stack/programs/x86_64-linux/ghc-8.0.2.temp/ghc-8.0.2/configure --prefix=/home/jackrose-ci/.stack/programs/x86_64-linux/ghc-8.0.2/ in directory /home/jackrose-ci/.stack/programs/x86_64-linux/ghc-8.0.2.temp/ghc-8.0.2/ exited with ExitFailure 1
<mounty> checking for path to top of build tree...
<mounty> /home/jackrose-ci/.stack/programs/x86_64-linux/ghc-8.0.2.temp/ghc-8.0.2/configure: utils/ghc-pwd/dist-install/build/tmp/ghc-pwd-bindist: /bin/bash: bad interpreter: No such file or directory
<mounty> configure: error: cannot determine current directory
<joepie91> gchristensen: hehe. I don't do businesses, but I *do* have a project based on NixOS... :)
<NixOS_GitHub> [nixpkgs] abbradar pushed 2 new commits to release-17.03: https://git.io/vSI84
<NixOS_GitHub> nixpkgs/release-17.03 bb271fb Nikolay Amiantov: ibus: wrap with GTK dependencies...
<NixOS_GitHub> nixpkgs/release-17.03 50cc86c Nikolay Amiantov: ibus-engines: use wrapPythonPrograms...
<joepie91> very very long-term though
<mounty> Now /bin/bash does in fact not exist.
<mounty> 'type bash' returns '/run/current-system/sw/bin/bash'
<dmj`> mounty: it can’t be patched
<dmj`> you need to write it #!/usr/bin/env bash
Rizy has quit [(Quit: Rizy)]
<mounty> dmj`: you asked above "why use stack w/ nix". Is there a better way?
<mounty> I really don't want to start delving into stack to work out what to patch.
<mounty> Maybe ask on #haskell-stack
byteflame has joined #nixos
<dmj`> mounty: just use nix
<dmj`> stack won’t be using the /nix/store for it’s haskell deps
<mounty> dmj`: what do you mean, just use nix? How? Can it be told to use my cabal and stack.yaml ?
<dmj`> mounty: cabal2nix . > default.nix
<dmj`> cat> app.nix <<EOF
<dmj`> { pkgs ? import <nixpkgs> {} }: pkgs.haskellPackages.callPackage ./default.nix {}
<dmj`> EOF
<dmj`> then just "nix-build"
<mounty> What package contains cabal2nix?
<dmj`> nix-env -iA cabal2nix -f ‘<nixpkgs>’
<dmj`> puts it into your profile
<dmj`> which is just a symlink into the store
<dmj`> -e “erases” the symlink, but keep it in the store
ambro718 has quit [(Ping timeout: 260 seconds)]
<dmj`> s/keep/keeps
<dmj`> er, you’ll want to “nix-build app.nix"
byteflame has quit [(Ping timeout: 258 seconds)]
goibhniu has quit [(Ping timeout: 240 seconds)]
c0ff33 has quit [(Quit: Lost terminal)]
<mounty> Hmm, apparently my project has an unfree licence. I didn't know that. I'd better stop using it. ;-)
<dmj`> put allowUnfree = true; in you ~/.config/nixpkgs/config.nix