worldofpeace changed the topic of #nixos to: NixOS 20.09 Nightingale ✨ https://discourse.nixos.org/t/nixos-20-09-release/9668 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-inf
dfordvm_ is now known as dfordvm
meh` has quit [Ping timeout: 276 seconds]
das_j has quit [Quit: Bridge terminating on SIGTERM]
Scriptkiddi has quit [Quit: Bridge terminating on SIGTERM]
cheriimoya has quit [Quit: Bridge terminating on SIGTERM]
ajs124 has quit [Quit: Bridge terminating on SIGTERM]
mrpi1 has quit [Quit: Bridge terminating on SIGTERM]
mrpi has joined #nixos
ajs124 has joined #nixos
das_j has joined #nixos
Scriptkiddi has joined #nixos
cheriimoya has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #110038 → libsigsegv: 2.12 -> 2.13 → https://github.com/NixOS/nixpkgs/pull/110038
<{^_^}> [nixpkgs] @tomberek merged pull request #110036 → logrotate: 3.17.0 -> 3.18.0 → https://github.com/NixOS/nixpkgs/pull/110036
irc1 is now known as suchar
meteo_ has quit [Quit: Leaving]
meteo__ has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @tomberek merged pull request #110067 → libosmpbf: 1.3.3 -> 1.5.0 → https://github.com/NixOS/nixpkgs/pull/110067
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114424 → dasel: 1.13.1 -> 1.13.2 → https://github.com/NixOS/nixpkgs/pull/114424
jjakob_ is now known as jjakob
<jgart[m]> does nix have a modulo function?
jjakob has quit [Quit: Either I'm rebooting or Quassel died again.]
<jgart[m]> * does nix have a modulo function in the standard library?
jjakob has joined #nixos
<sterni> jgart[m]: nope
<sterni> jgart[m]: but integer division truncates in nix, so you can probably do:
<sterni> > mod = a: b: let res = a / b; in a - (res * b)
<{^_^}> mod defined
<jgart[m]> :(
<sterni> > mod 11 5
<{^_^}> 1
<jgart[m]> <sterni "> mod = a: b: let res = a / b; i"> :)
<sterni> doesn't work for floats of course
<jgart[m]> I just need it for integers
<jgart[m]> but thanks!
acarrico has joined #nixos
<jgart[m]> sterni: I'm trying to implement a twelve tone matrix in nix https://www.instructables.com/Create-a-Twelve-Tone-melody-with-a-Twelve-Tone-Mat/
<sterni> why are you doing it in nix though?
<jgart[m]> I'm just experimenting and curious to see how one would do it. I'm trying to port an implementation I have in scheme to nix.
<sterni> i see
<infinisil> > lib.mod
<{^_^}> <LAMBDA>
<infinisil> sterni: jgart[m]: Already implemented ^
<jgart[m]> ohh great!
<jgart[m]> I'll use that one instead now, then
<jgart[m]> sterni: but thanks for demonstrating that!
<sterni> infinisil: guess I'm just preconditioned :D
zups has joined #nixos
<jgart[m]> sterni: :D that's good. I wish I was a core lang MacGyver. some day...
zopieux` is now known as zopieux
<jgart[m]> does nix have something like iota? e.g. iota 12 -> [ 0 1 2 3 4 5 6 7 8 9 10 11 ]
<ToxicFrog> I've been working on an ascii-art (ok, unicode-art) version of the nix logo for making terminal candy with:
<ToxicFrog> http://ix.io/2QSC
supersandro2000 has quit [Disconnected by services]
supersandro20000 has joined #nixos
<sterni> jgart[m]: you can use builtins.genList
<sterni> jgart[m]: do you mind joining #nix-lang? that's the more on topic channel for that kind of stuff :)
work_ has quit [Quit: Connection closed for inactivity]
<jgart[m]> sterni: sorry and thanks for the tip
<{^_^}> [nixpkgs] @marsam merged pull request #114390 → vault: 1.6.2 -> 1.6.3 → https://github.com/NixOS/nixpkgs/pull/114390
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 260 seconds]
mbrgm_ is now known as mbrgm
<{^_^}> [nixpkgs] @marsam pushed commit from @Chili-Man to release-20.09 « vault: 1.6.2 -> 1.6.3 »: https://git.io/JtbmA
<infinisil> > :p lib.range 0 11
<{^_^}> [ 0 1 2 3 4 5 6 7 8 9 10 11 ]
<infinisil> jgart[m]: sterni: ^
<{^_^}> [nixpkgs] @tomberek merged pull request #109950 → checkmake: init at 0.1.0-2020.11.30 → https://github.com/NixOS/nixpkgs/pull/109950
apache8080 has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #114389 → yq-go: 4.6.0 -> 4.6.1 → https://github.com/NixOS/nixpkgs/pull/114389
<gchristensen> how do I configure Nix to use a chroot store?
<gchristensen> / a redirected store
<sterni> infinisil: really need to use <nixpkgs/lib> more it seems
m0rphism1 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #114360 → minio: 2021-02-19T04-38-02Z -> 2021-02-24T18-44-45Z → https://github.com/NixOS/nixpkgs/pull/114360
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JtbYV
<{^_^}> [nixpkgs] @marsam merged pull request #114378 → tailscale: 1.4.4 -> 1.4.5 → https://github.com/NixOS/nixpkgs/pull/114378
srk has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #114363 → netdata: 1.29.2 -> 1.29.3 → https://github.com/NixOS/nixpkgs/pull/114363
<{^_^}> [nixpkgs] @marsam merged pull request #114369 → rdkafka: 1.6.0 -> 1.6.1 → https://github.com/NixOS/nixpkgs/pull/114369
<{^_^}> [nixpkgs] @marsam merged pull request #114356 → mark: 5.2 -> 5.2.1 → https://github.com/NixOS/nixpkgs/pull/114356
jonringer_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @marsam merged pull request #114323 → buildkit: 0.8.1 -> 0.8.2 → https://github.com/NixOS/nixpkgs/pull/114323
<thoughtpolice> gchristensen: You just need to use the --store option in your commands AFAIK, last I tried
<{^_^}> [nixpkgs] @marsam merged pull request #114320 → ameba: 0.13.4 -> 0.14.0 → https://github.com/NixOS/nixpkgs/pull/114320
<thoughtpolice> gchristensen: `nix-build -A hello && nix copy --to file://$PWD/cache-test ./result && nix run --store file://$PWD/cache-test nixpkgs.hello -c hello` seems to work OK for me
<thoughtpolice> (from the root of the nixpkgs checkout, in my case)
justanotheruser has joined #nixos
acarrico has quit [Ping timeout: 276 seconds]
apache8080 has joined #nixos
ximun has quit [Ping timeout: 246 seconds]
ximun has joined #nixos
oida has quit [Ping timeout: 268 seconds]
<drozdziak1> Does Nix know how to deduplicate CFLAGS? I'm battling a long argument list problem for some time now but I notice many flags are -I's that repeat 2-3 times
abathur has quit [Quit: abathur]
oida has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114425 → eclib: 20190909 -> 20210223 → https://github.com/NixOS/nixpkgs/pull/114425
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JtbOn
ddellacosta has joined #nixos
yjftsjthsd has joined #nixos
supersandro20000 has quit [Quit: The Lounge - https://thelounge.chat]
supersandro2000 has joined #nixos
<gchristensen> thoughtpolice: maybe I should ask you my question a bit more directly ... I'd like to run nix-build like this https://gist.github.com/grahamc/fa7b3cf853f1ab8daa71c0cf467fbb9c and give this nix-build a fake remote builder: where `ssh` in PATH is secretly a shim to call nix-store --serve --write with a second tempdir it can build "remotely" in
hlz has joined #nixos
ddellacosta has quit [Ping timeout: 265 seconds]
abathur has joined #nixos
jsoo_ is now known as jsoo
<thoughtpolice> Oh, *that* one I would have no clue about. Interesting idea, though; is this for r13y or something?
<gchristensen> testing hydra :x
jb55 has quit [Remote host closed the connection]
jb55 has joined #nixos
cmk_zzz_ has joined #nixos
ddellacosta has joined #nixos
cmk_zzz has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #111462 → nixos/qemu-vm: add virtualisation.msize option → https://github.com/NixOS/nixpkgs/pull/111462
jonringer has joined #nixos
<{^_^}> [nixpkgs] @mkg20001 opened pull request #114427 → ssh-import-id: 5.8 -> 5.11 → https://github.com/NixOS/nixpkgs/pull/114427
rajivr has joined #nixos
cmk_zzz has joined #nixos
cmk_zzz_ has quit [Ping timeout: 264 seconds]
apache8080 has quit [Ping timeout: 264 seconds]
alvaro121 has joined #nixos
patagonicus2 has joined #nixos
gustavderdrache has left #nixos [#nixos]
ddellacosta has quit [Remote host closed the connection]
alvaro121 has quit [Client Quit]
patagonicus has quit [Ping timeout: 272 seconds]
patagonicus2 is now known as patagonicus
ahmed_elgabri has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @mkg20001 merged pull request #114285 → netplan: init at 0.101 → https://github.com/NixOS/nixpkgs/pull/114285
strikerlulu has quit [Ping timeout: 276 seconds]
Maxdaman1us is now known as Maxdamantus
h0m1 has quit [Ping timeout: 240 seconds]
growpotkin has quit [Ping timeout: 260 seconds]
h0m1 has joined #nixos
Lord_of_Life_ has joined #nixos
gustavderdrache has joined #nixos
Lord_of_Life has quit [Ping timeout: 260 seconds]
Lord_of_Life_ is now known as Lord_of_Life
pinkieval has quit [Ping timeout: 240 seconds]
ahmed_elgabri has joined #nixos
ahmed_elgabri has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #110003 → leatherman: 1.12.3 -> 1.12.4 → https://github.com/NixOS/nixpkgs/pull/110003
pinkieval has joined #nixos
ddellacosta has joined #nixos
apache8080 has joined #nixos
ddellacosta has quit [Ping timeout: 276 seconds]
ahmed_elgabri has joined #nixos
orivej has quit [Ping timeout: 272 seconds]
growpotkin has joined #nixos
ahmed_elgabri has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @tomberek closed pull request #110029 → libebml: 1.4.0 -> 1.4.1 → https://github.com/NixOS/nixpkgs/pull/110029
<{^_^}> [nixpkgs] @cdepillabout merged pull request #114422 → haskellPackages: fix various configuration-common.nix eval errors → https://github.com/NixOS/nixpkgs/pull/114422
<{^_^}> [nixpkgs] @tomberek merged pull request #110033 → libdsk: 1.5.12 -> 1.5.14 → https://github.com/NixOS/nixpkgs/pull/110033
<{^_^}> [nixpkgs] @aanderse merged pull request #114354 → [20.09] flightgear: update icon source url → https://github.com/NixOS/nixpkgs/pull/114354
ahmed_elgabri has joined #nixos
jumper149 has joined #nixos
<jumper149> I want to configure ssl manually for my nginx proxy in configuration.nix
<{^_^}> [nixpkgs] @tomberek merged pull request #110024 → kea: 1.8.2 -> 1.9.3 → https://github.com/NixOS/nixpkgs/pull/110024
<tomberek> jumper149: where are you getting stuck?
justanotheruser has quit [Ping timeout: 264 seconds]
<jumper149> http://ix.io/2QT9
mcornick has joined #nixos
<jumper149> And journalctl tells me nginx: ... no "ssl_certificate" is defined for the "listen ... ssl" directive ...
apache8080 has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #110121 → ocsigen-i18n: 3.5.0 -> 3.7.0 → https://github.com/NixOS/nixpkgs/pull/110121
<jumper149> tomberek: I have a very similar setup with apache and that is working fine
<jumper149> http://ix.io/2QTc if you are interested in that
<jumper149> Do I need to use the "chain.pem" maybe?
apache8080 has joined #nixos
<jumper149> I am on nixos-unstable btw
ahmed_elgabri has quit [Ping timeout: 264 seconds]
<tomberek> why not just use ACME to set it up for you (it's automatic)?   Did you look at the generated nginx.conf?
<jumper149> No didn't look at it yet
<tomberek> and yes, nginx takes the chain
<jumper149> I would like to use a DNS challenge instead of a HTTP challenge for the certificate
<jumper149> sslTrustedCertificate = ".../chain.pem" then?
<jumper149> Ill try that
ddellacosta has joined #nixos
<tomberek> it looks like the ACME module supports DNS via the dnsProvider option
tv has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #110030 → libofx: 0.9.15 -> 0.10.0 → https://github.com/NixOS/nixpkgs/pull/110030
andreas303 has quit [Remote host closed the connection]
andreas303 has joined #nixos
<jumper149> That doesn't seem to fix it :(
ddellacosta has quit [Ping timeout: 265 seconds]
<jumper149> tomberek: I am using this option, just once for the domain and then using the certificate in different services
tv has joined #nixos
<jumper149> waaaait, maybe enableACME does exactly the same? :D
<tomberek> jumper149: i'd check the generated nginx.conf and the file it is pointing to. Make sure it's properly formatted, etc. (it's easy to have extra blurbs from openssl accidentially in the file)
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114428 → s3fs: 1.88 -> 1.89 → https://github.com/NixOS/nixpkgs/pull/114428
marcusr_ has quit [Remote host closed the connection]
<tomberek> i use enableACME often and it JustWorks(tm)
marcusr has joined #nixos
<jumper149> Ah yes now I remember the problem that I was having before dnsProvider and webroot are mutually exclusive (from security.acme.certs.domain)
<jumper149> That's why I was saying that nginx tries an HTTP challenge
<tomberek> check what is written to the nginx.conf file, the double quotes or string interpolation may be doing something odd
<jumper149> Yes will do that now, one thing after another :D
<{^_^}> [nixpkgs] @mkg20001 merged pull request #114427 → ssh-import-id: 5.8 -> 5.11 → https://github.com/NixOS/nixpkgs/pull/114427
thc202 has quit [Ping timeout: 240 seconds]
<jumper149> Well the options sslCertificate and sslCertificateKey didn't end up in the config file actually
<jumper149> I guess that's the problem then
aw has quit [Quit: Quitting.]
spacefrogg_ has quit [Quit: Gone.]
<jumper149> extraConfig to the rescue :D
aw has joined #nixos
spacefrogg has joined #nixos
awmv has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @tomberek merged pull request #110113 → mcelog: 173 -> 175 → https://github.com/NixOS/nixpkgs/pull/110113
<tomberek> jumper149: you may need one of onlySSL, addSSL, or forceSSL as true
nwspk has quit [Quit: nwspk]
nwspk has joined #nixos
<tomberek> The server sections have "${optionalString hasSSL ..."
stephank has quit [Quit: stephank]
stephank has joined #nixos
<tomberek> jumper149: yup, compared to your httpd config, you need a forceSSL = true in the nginx version.
<jumper149> forceSSL is true by default
<jumper149> not?
<jumper149> it is not x)
<jumper149> this was throwing me off, its not the right option ^&
<tomberek> ya, i've encountered that. I'll bet this will get you on the right track.
<jumper149> tomberek++
<{^_^}> tomberek was put on Santa's "nice" list
<jumper149> I wouldn't have spotted that and used that silly extraConfig workaround
<jumper149> ty :)
tomberek_ has joined #nixos
tomberek_ has quit [Client Quit]
<{^_^}> [nixpkgs] @tomberek merged pull request #110114 → matterircd: 0.20.0 -> 0.22.0 → https://github.com/NixOS/nixpkgs/pull/110114
<jawr> /j metallb
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
AlpineLlama has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #114350 → jupp: 39 -> 40 → https://github.com/NixOS/nixpkgs/pull/114350
justanotheruser has joined #nixos
jumper149 has quit [Quit: WeeChat 3.0.1]
<{^_^}> [nixpkgs] @tomberek merged pull request #110112 → mongodb-compass: 1.23.0 -> 1.24.6 → https://github.com/NixOS/nixpkgs/pull/110112
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/9d22f070675 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
mvnetbiz_ has quit [Changing host]
mvnetbiz_ has joined #nixos
BaughnLogBot has quit [Ping timeout: 272 seconds]
BaughnLogBot has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114430 → freerdp: 2.2.0 -> 2.3.0 → https://github.com/NixOS/nixpkgs/pull/114430
<{^_^}> [nixpkgs] @tomberek closed pull request #97344 → Uptade pytest-timeout and x265 derivations → https://github.com/NixOS/nixpkgs/pull/97344
aszlig_ is now known as aszlig
ddellacosta has joined #nixos
ddellacosta has quit [Ping timeout: 272 seconds]
terinjokes has quit [Quit: ZNC 1.8.1 - https://znc.in]
ml| has quit [Ping timeout: 240 seconds]
terinjokes has joined #nixos
Supersonic112 has joined #nixos
Supersonic has quit [Ping timeout: 264 seconds]
Supersonic112 is now known as Supersonic
<{^_^}> [nixpkgs] @marsam merged pull request #114327 → dunst: 1.5.0 -> 1.6.1 → https://github.com/NixOS/nixpkgs/pull/114327
<{^_^}> [nixpkgs] @marsam merged pull request #114326 → coredns: 1.8.1 -> 1.8.3 → https://github.com/NixOS/nixpkgs/pull/114326
<{^_^}> [nixpkgs] @marsam merged pull request #114325 → cassowary: 0.12.1 -> 0.13.0 → https://github.com/NixOS/nixpkgs/pull/114325
<{^_^}> [nixpkgs] @marsam merged pull request #114353 → lightdm-mini-greeter: 0.4.0 -> 0.5.0 → https://github.com/NixOS/nixpkgs/pull/114353
<{^_^}> [nixpkgs] @marsam merged pull request #114413 → cri-o-unwrapped: 1.20.0 -> 1.20.1 → https://github.com/NixOS/nixpkgs/pull/114413
<{^_^}> [nixpkgs] @marsam merged pull request #114425 → eclib: 20190909 -> 20210223 → https://github.com/NixOS/nixpkgs/pull/114425
<{^_^}> [nixpkgs] @marsam merged pull request #114428 → s3fs: 1.88 -> 1.89 → https://github.com/NixOS/nixpkgs/pull/114428
<{^_^}> [nixpkgs] @marsam merged pull request #114310 → python37Packages.ckcc-protocol: 1.0.2 -> 1.0.3 → https://github.com/NixOS/nixpkgs/pull/114310
<{^_^}> [nixpkgs] @samueldr opened pull request #114431 → refind: 0.13.0 -> 0.13.1 → https://github.com/NixOS/nixpkgs/pull/114431
<{^_^}> [nixpkgs] @marsam merged pull request #114424 → dasel: 1.13.1 -> 1.13.2 → https://github.com/NixOS/nixpkgs/pull/114424
<omasanori[m]> I just noticed that sage fails on Hydra since build 136359464, happy bisecting has started
<{^_^}> [nixpkgs] @marsam merged pull request #114081 → pappl: 1.0.1 -> 1.0.2 → https://github.com/NixOS/nixpkgs/pull/114081
ml| has joined #nixos
<{^_^}> [nixpkgs] @tomberek opened pull request #114432 → pytest-timeout: remove test → https://github.com/NixOS/nixpkgs/pull/114432
<{^_^}> [nixpkgs] @marsam merged pull request #114086 → pragha: 1.3.4 -> 1.3.99.1 → https://github.com/NixOS/nixpkgs/pull/114086
<{^_^}> [nixpkgs] @marsam merged pull request #114077 → libgphoto2: 2.5.26 -> 2.5.27 → https://github.com/NixOS/nixpkgs/pull/114077
<{^_^}> [nixpkgs] @marsam merged pull request #114397 → python3Packages.sagemaker: 2.25.1 -> 2.25.2 → https://github.com/NixOS/nixpkgs/pull/114397
jonringer has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @tomberek merged pull request #110110 → mpg123: 1.26.3 -> 1.26.4 → https://github.com/NixOS/nixpkgs/pull/110110
enjoinedmot[m] has joined #nixos
justan0theruser has joined #nixos
justanotheruser has quit [Ping timeout: 272 seconds]
<matthewcroughan> Mic92: do you have any nix-shells that could be used to automate qemu logic?
marcusr has quit [Read error: Connection reset by peer]
<rmcgibbo[m]> omasanori: bisecting sage is going to take a looooong time
<rmcgibbo[m]> godspeed
<matthewcroughan> I wanna make a nix-shell that takes two arguments, does some logic with them and downloads the result of the first argument to the /nix/store.
marcusr has joined #nixos
<matthewcroughan> then runs qemu with variable flags
<matthewcroughan> ideally this shell would work the same under macos and any linux distro ;D
ahmed_elgabri has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
<omasanori[m]> <rmcgibbo[m] "omasanori: bisecting sage is goi"> Sure, it tooks 7 hours/step on my laptop and 10 minutes/step on a Xeon Silver machine in my institute (which I can use when there is no other jobs).
<omasanori[m]> * latter
ml| has quit [Ping timeout: 264 seconds]
apache8080 has quit [Ping timeout: 276 seconds]
<rmcgibbo[m]> heh
<enjoinedmot[m]> I know someone who is working on qemu with nix
<rmcgibbo[m]> nice
<matthewcroughan> enjoinedmot[m]: got their shells? :D
<enjoinedmot[m]> no... I don't even know the details, just noticed your chat... I could circle back with more info maybe
zupssss has joined #nixos
<tomberek> can i get a review/second-look on 114432?
ahmed_elgabri has quit [Ping timeout: 240 seconds]
<tomberek> omasanori[m]: i encounter that with tensorflowWithCuda builds (ouch)
Walker3R has joined #nixos
keash[m] is now known as Keash[m]
janneke_ is now known as janneke
<{^_^}> [nixpkgs] @marsam opened pull request #114434 → ocp-index: 1.2.1 -> 1.2.2 → https://github.com/NixOS/nixpkgs/pull/114434
domogled has quit [Quit: domogled]
hke has quit [Read error: Connection reset by peer]
hke has joined #nixos
apache8080 has joined #nixos
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @cdepillabout opened pull request #114435 → purescript: 0.13.8 -> 0.14.0 → https://github.com/NixOS/nixpkgs/pull/114435
ddellacosta has quit [Ping timeout: 265 seconds]
gustavderdrache has quit [Quit: Leaving.]
reptarmigan has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @cdepillabout merged pull request #114418 → haskellPackages.yarn2nix: unbreak build → https://github.com/NixOS/nixpkgs/pull/114418
palo1 has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #110077 → lyx: 2.3.6 -> 2.3.6.1 → https://github.com/NixOS/nixpkgs/pull/110077
palo has quit [Ping timeout: 256 seconds]
palo1 is now known as palo
jonringer has joined #nixos
jonringer has quit [Remote host closed the connection]
jonringer has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #113980 → ocamlPackages.bap: 2.1.0 → 2.2.0 → https://github.com/NixOS/nixpkgs/pull/113980
<{^_^}> [nixpkgs] @gvolpe opened pull request #114436 → beauty-line-icon-theme: init at 0.0.1 → https://github.com/NixOS/nixpkgs/pull/114436
ahmed_elgabri has joined #nixos
apache8080 has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @gvolpe opened pull request #114437 → juno-theme: init at 0.0.1 → https://github.com/NixOS/nixpkgs/pull/114437
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
<{^_^}> [nixpkgs] @cole-h opened pull request #114438 → octave.pkgs: stdenv.lib -> lib → https://github.com/NixOS/nixpkgs/pull/114438
ahmed_elgabri has quit [Ping timeout: 258 seconds]
sangoma has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #110103 → mediastreamer: 4.4.13 -> 4.4.24 → https://github.com/NixOS/nixpkgs/pull/110103
sangoma has quit [Quit: WeeChat 3.0]
<{^_^}> [nixpkgs] @tomberek merged pull request #110082 → mpop: 1.4.11 -> 1.4.12 → https://github.com/NixOS/nixpkgs/pull/110082
<{^_^}> [nixpkgs] @tomberek merged pull request #110109 → man-pages: 5.09 -> 5.10 → https://github.com/NixOS/nixpkgs/pull/110109
sangoma has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #110079 → mblaze: 1.0 -> 1.1 → https://github.com/NixOS/nixpkgs/pull/110079
zupssss has quit []
hyiltiz__ has quit [Quit: hyiltiz__]
cfricke has joined #nixos
zups has quit []
aniketd[m] has joined #nixos
Darkmatter66 has joined #nixos
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/a2aae1baa9c (from 6 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
Jd007 has quit [Quit: Jd007]
philr_ has joined #nixos
bn_work has quit [Quit: Connection closed for inactivity]
redmp has joined #nixos
mallox has joined #nixos
jonringer has quit [Ping timeout: 264 seconds]
cognemo has quit [Quit: cognemo]
ddellacosta has joined #nixos
cognemo has joined #nixos
<{^_^}> [nixpkgs] @davidak merged pull request #114438 → octave.pkgs: stdenv.lib -> lib → https://github.com/NixOS/nixpkgs/pull/114438
ddellacosta has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @tomberek merged pull request #110061 → lldpd: 1.0.7 -> 1.0.8 → https://github.com/NixOS/nixpkgs/pull/110061
attila_lendvai has joined #nixos
attila_lendvai has quit [Changing host]
attila_lendvai has joined #nixos
sangoma has quit [Ping timeout: 265 seconds]
cfricke has quit [Quit: WeeChat 3.0.1]
meh` has joined #nixos
quinn has quit [Quit: ZNC 1.8.1 - https://znc.in]
o1lo01ol1o has joined #nixos
page_ is now known as page
o1lo01ol1o has quit [Ping timeout: 265 seconds]
quinn has joined #nixos
JJJollyjim has joined #nixos
JJJollyjim is now known as Guest67960
redmp has quit [Quit: leaving]
<{^_^}> [nixpkgs] @zowoq opened pull request #114441 → sqldiff, sqlite-analyzer: fix sha256 → https://github.com/NixOS/nixpkgs/pull/114441
<{^_^}> [nixpkgs] @davidak merged pull request #114434 → ocamlPackages.ocp-index: 1.2.1 -> 1.2.2 → https://github.com/NixOS/nixpkgs/pull/114434
riksteri has joined #nixos
philr_ has quit [Quit: WeeChat 3.0]
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/0e499fde7af (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<Mic92> matthewcroughan: I only have built nixos-shell and this: https://github.com/Mic92/vmsh/blob/f4b807e9400d505253ef596594434b54d1cf6313/justfile#L40
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114442 → jruby: 9.2.14.0 -> 9.2.15.0 → https://github.com/NixOS/nixpkgs/pull/114442
Guest67960 has quit [Quit: authenticating]
Guest67960 has joined #nixos
Guest67960 has quit [Client Quit]
Guest67960 has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #110034 → libfprint: 1.90.5 -> 1.90.7 → https://github.com/NixOS/nixpkgs/pull/110034
<{^_^}> [nixpkgs] @fabaff opened pull request #114443 → python3Packages.graphql-relay: 3.0.0 -> 3.1.0 → https://github.com/NixOS/nixpkgs/pull/114443
benny_ is now known as benny
<{^_^}> [nixpkgs] @adisbladis merged pull request #114213 → teensyduino: fix missing library paths → https://github.com/NixOS/nixpkgs/pull/114213
strikerlulu has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #114441 → sqldiff, sqlite-analyzer: fix sha256 → https://github.com/NixOS/nixpkgs/pull/114441
rnhmjoj has quit [Changing host]
rnhmjoj has joined #nixos
rnhmjoj has quit [Changing host]
rnhmjoj has joined #nixos
<{^_^}> [nixpkgs] @fortuneteller2k opened pull request #114444 → mpd: 0.22.5 -> 0.22.6 → https://github.com/NixOS/nixpkgs/pull/114444
cognemo has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #114358 → dwl: 0.1 -> 0.2 → https://github.com/NixOS/nixpkgs/pull/114358
jimmiehansson has joined #nixos
hlz has left #nixos ["WeeChat 3.0"]
tboston has joined #nixos
<{^_^}> [nixpkgs] @tomberek merged pull request #110183 → ortp: 4.4.9 -> 4.4.24 → https://github.com/NixOS/nixpkgs/pull/110183
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114340 → wolfssl: use --enable-reproducible-build in favour of configure.ac hack → https://github.com/NixOS/nixpkgs/pull/114340
tboston has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #114338 → amdvlk: 2021.Q1.3 -> 2020.Q1.4 → https://github.com/NixOS/nixpkgs/pull/114338
lsix has joined #nixos
philr has joined #nixos
ahmed_elgabri has joined #nixos
ddellacosta has joined #nixos
cole-h has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #114445 → python3Packages.praw: 7.1.4 -> 7.2.0 → https://github.com/NixOS/nixpkgs/pull/114445
ml| has joined #nixos
sphalerite_ is now known as sphalerite
ahmed_elgabri has quit [Ping timeout: 258 seconds]
ddellacosta has quit [Ping timeout: 276 seconds]
cfricke has joined #nixos
lewo``` has quit [Remote host closed the connection]
lewo has joined #nixos
davidv7_ has quit [Remote host closed the connection]
sangoma has joined #nixos
nschoe has joined #nixos
alexherbo2 has joined #nixos
bokononi3t has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114257 → python3Packages.parso: fix flaky test due to slow moving time → https://github.com/NixOS/nixpkgs/pull/114257
<{^_^}> [nixpkgs] @dotlambda merged pull request #114355 → [20.09] thunderbird, thunderbird-bin: 78.7.1 -> 78.8.0 [High security fixes] → https://github.com/NixOS/nixpkgs/pull/114355
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114284 → nomad_1_0: 1.0.3 -> 1.0.4 → https://github.com/NixOS/nixpkgs/pull/114284
fendor has joined #nixos
bokononi2t has quit [Ping timeout: 260 seconds]
davidv7 has joined #nixos
o1lo01ol1o has joined #nixos
simonpe^^ has joined #nixos
<simonpe^^> I'm looking for a grep expression (regex) or a tool to find all the store path references in a text file
fendor has quit [Remote host closed the connection]
ahmed_elgabri has joined #nixos
ddellacosta has joined #nixos
terrorjack has quit [Quit: The Lounge - https://thelounge.chat]
zupo has joined #nixos
terrorjack has joined #nixos
ddellacosta has quit [Ping timeout: 272 seconds]
respawn_ has quit [Quit: Leaving]
critbase[m] has quit [Quit: Idle for 30+ days]
hcuk[m] has quit [Quit: Idle for 30+ days]
meh` has quit [Ping timeout: 265 seconds]
addcninblue has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @dotlambda opened pull request #114447 → python3Packages.adblock: use meta instead of passthru.meta → https://github.com/NixOS/nixpkgs/pull/114447
m0rphism1 has joined #nixos
chisui has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fuiltilt has quit [Quit: WeeChat 2.9]
addcninblue has joined #nixos
ahmed_elgabri has quit [Remote host closed the connection]
vidbina has joined #nixos
<Orbstheorem> Where can I find the current nixpkgs policy? In particular the one about packaging only released software.
<{^_^}> [nixpkgs] @FRidh merged pull request #114447 → python3Packages.adblock: use meta instead of passthru.meta → https://github.com/NixOS/nixpkgs/pull/114447
<{^_^}> [nixpkgs] @jtojnar merged pull request #114416 → lib/licenses: fix regression removing shortName for some licenses → https://github.com/NixOS/nixpkgs/pull/114416
<{^_^}> [nixpkgs] @FRidh pushed 911 commits to staging-next: https://git.io/Jtb2M
sigmundv_ has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed to master « vorta: 0.7.3 -> 0.7.4 »: https://git.io/Jtb29
vidbina has quit [Quit: vidbina]
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 pushed to release-20.09 « vorta: 0.7.3 -> 0.7.4 »: https://git.io/Jtb2d
alexherbo2 has quit [Ping timeout: 264 seconds]
ddellacosta has joined #nixos
alexherbo2 has joined #nixos
malook has joined #nixos
ddellacosta has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @markus1189 opened pull request #114448 → anki: 2.1.38 -> 2.1.40 → https://github.com/NixOS/nixpkgs/pull/114448
<raboof> if a nix store path is a root but I'm pretty sure it shouldn't be, what do I do to further diagnose? It's not linked directly in /nix/var/nix/gcroots/auto , but perhaps indirectly. pretty sure it's not part of any profile.
avaq has joined #nixos
jbetz has quit [Ping timeout: 260 seconds]
pingveno has quit [Read error: Connection reset by peer]
jbetz has joined #nixos
pingveno has joined #nixos
alexherbo2 has quit [Ping timeout: 240 seconds]
malook has quit [Read error: Connection reset by peer]
Khetzal_ is now known as Khetzal
<{^_^}> [nixpkgs] @dotlambda pushed 197 commits to python-unstable: https://git.io/JtbVk
<sephii> I’d like to remove old generations on a network with nixops. The help says `delete-generation` takes one argument GENERATION which is "number of the desired configuration". Should I put the number of the generation I want to keep, or the generations I want to delete?
Guest67960 has quit [Quit: authenticating]
Guest67960 has joined #nixos
Guest67960 is now known as JJJollyjim
<ikwildrpepper> sephii: afaik the number of the generation you would like to delete
JJJollyjim has quit [Client Quit]
<ikwildrpepper> yeah, looking at the code, it confirms that it is consistent with the name of the option and its description
JJJollyjim has joined #nixos
JJJollyjim is now known as Guest26650
Guest26650 has quit [Client Quit]
Guest26650 has joined #nixos
<{^_^}> [nixpkgs] @fare opened pull request #114449 → Update Gambit, Gerbil, Glow → https://github.com/NixOS/nixpkgs/pull/114449
Guest26650 has quit [Client Quit]
Guest26650 has joined #nixos
Guest26650 has quit [Client Quit]
alexherbo2 has joined #nixos
<sephii> ikwildrpepper: so if I have 50 generations and I only want to keep the latest one I need to execute the command in a loop right? There’s no shortcut like `+3` to keep 3 generations?
<{^_^}> [nixpkgs] @Mic92 merged pull request #114319 → aws-c-common: fix build on clang 11 → https://github.com/NixOS/nixpkgs/pull/114319
<ikwildrpepper> sephii: haven't used the feature in a while, let me check quickly :)
ahmedelgabri has joined #nixos
<ikwildrpepper> sephii: I thought there was a feature to do such a thing, but, if I look at the options and the code, it looks like the delete-generation only accepts int's currently, which means it can only delete single generations currently
zups has joined #nixos
<sephii> ikwildrpepper: ok, I did it with a shell loop, thanks :)
<ikwildrpepper> it uses internally the nix-env --delete-generations command, so it probably wouldn't be too complicated to add :)
<{^_^}> [nixpkgs] @dotlambda pushed 917 commits to staging: https://git.io/JtbVj
grumble has quit [Quit: K-Lined]
<yaymukund> anyone had luck setting up systemd-boot w a luks-encrypted volume?
<yaymukund> looks like all the guides are geared towards grub: https://nixos.wiki/wiki/Full_Disk_Encryption
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/a2aae1baa9c (from 9 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> [nixpkgs] @FRidh pushed 197 commits to staging-next: https://git.io/Jtbw8
<yaymukund> looks like it might "just work" altho this comment is q old: https://gist.github.com/martijnvermaat/76f2e24d0239470dd71050358b4d5134#gistcomment-2240339
grumble has joined #nixos
<chisui> Is there a way to enable docker without having the `docker` executable installed?
<chisui> I want to have the deamon running without the user having access to it unless they enter a nix-shell where docker is an explicit dependency
__monty__ has joined #nixos
thc202 has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed 285 commits to master: https://git.io/JtbwM
<{^_^}> [nixpkgs] @adisbladis opened pull request #114451 → gcc10: Pass langJit to preConfigure → https://github.com/NixOS/nixpkgs/pull/114451
ScottHDev5 has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed 198 commits to staging: https://git.io/JtbrU
<{^_^}> [nixpkgs] @FRidh closed pull request #113757 → Staging next → https://github.com/NixOS/nixpkgs/pull/113757
<{^_^}> [nixpkgs] @FRidh opened pull request #114452 → Staging next → https://github.com/NixOS/nixpkgs/pull/114452
domogled has joined #nixos
<{^_^}> [nixpkgs] @FRidh closed pull request #113761 → Python packages set update → https://github.com/NixOS/nixpkgs/pull/113761
<{^_^}> [nixpkgs] @MayNiklas opened pull request #114453 → plex: 1.21.4.4054-bab510e86 -> 1.21.4.4079-1b7748a7b → https://github.com/NixOS/nixpkgs/pull/114453
jimkooch has joined #nixos
siers has quit [Changing host]
siers has joined #nixos
siers is now known as ij
<jimkooch> How do I install aterm in NixOS?
<aforemny> jimkooch: It seems aterm is no longer in Nixpkgs https://github.com/NixOS/nixpkgs/pull/18453
<{^_^}> #18453 (by chris-martin, 4 years ago, merged): atermjava: remove
<{^_^}> [nixpkgs] @raboof opened pull request #114454 → squashfs: use -no-hardlinks for reproducible squashfs images → https://github.com/NixOS/nixpkgs/pull/114454
<aforemny> jimkooch: Or maybe atermjava is not aterm? Anyhow, I couldn't find aterm in Nixpkgs
<{^_^}> [nixpkgs] @raboof closed pull request #114371 → unzip: avoid hard links → https://github.com/NixOS/nixpkgs/pull/114371
<{^_^}> [nixpkgs] @raboof closed pull request #114370 → jfsutils: avoid hard links → https://github.com/NixOS/nixpkgs/pull/114370
<jimkooch> aforemny: aterm is alternative terminal like xterm. So no way to get in NixOS then..
ddellacosta has joined #nixos
<aforemny> jimkooch: You could open an package request issue or package it yourself and open a pull request
<aforemny> jimkooch: You could also create a package yourself and install it locally without getting it into Nixpkgs
<jimkooch> aforemny: I'm still new in NixOS, learning the howto...
<jimkooch> aforemny: can you give me an expression for such?
ddellacosta has quit [Ping timeout: 240 seconds]
<aforemny> jimkooch: The Nixpkgs manual has a section on adding packages to Nixpkgs: https://nixos.org/manual/nixpkgs/stable/#chap-quick-start
<aforemny> jimkooch: Seeing that aterm is based on rxvt, this might be a good starting point: https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/terminal-emulators/rxvt/default.nix
<aforemny> jimkooch: There is also a video on YouTue: https://www.youtube.com/watch?v=fvj8H5yUKu8
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.stdlib-shims: 0.1.0 → 0.3.0 »: https://git.io/JtbKc
<jimkooch> aforemny: will try to cook then. Once more into the fray!
<{^_^}> [nixpkgs] @adisbladis merged pull request #114451 → gcc10: Pass langJit to preConfigure → https://github.com/NixOS/nixpkgs/pull/114451
alexherbo28 has joined #nixos
alexherbo2 has quit [Ping timeout: 256 seconds]
alexherbo28 is now known as alexherbo2
<yaymukund> my nixos install won't boot. i've rebooted via install media and mounted everything as it was before i ran nixos-install. how can i reinstall it with an updated configuration.nix?
<aforemny> ,locate stropts.h
<yaymukund> ooo, i think i just run nixos-install again
<{^_^}> Found in packages: zig, z88dk, framac, zfs.dev, musl.dev, boomerang, emscripten, zfsUnstable.dev
<aforemny> jimkooch: I just took the rxvt expression I linked to earlier, and added the dependencies and patches from Arch Linux and it builds: https://gist.github.com/aforemny/b88594ba0f74fa32065eb72c20b53efa :'-D
<aforemny> jimkooch: Arch Linux AUR: https://aur.archlinux.org/packages/aterm/
<{^_^}> [nixpkgs] @cdepillabout merged pull request #114435 → purescript: 0.13.8 -> 0.14.0 → https://github.com/NixOS/nixpkgs/pull/114435
<aforemny> jimkooch: Note that this is only a rough draft. You'll want to remove unused dependencies from buildInputs, update the configurePhase and meta section to turn it into something usable.
<{^_^}> [nixpkgs] @danieldk opened pull request #114455 → buildRustPackage: use checkType argument → https://github.com/NixOS/nixpkgs/pull/114455
<jimkooch> aforemny: thanks.. and so it begins, my journey into the rabbit hole!
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/74b9241e60c (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
nly has joined #nixos
<nly> how to setup pip?
luxemboye has quit [Ping timeout: 268 seconds]
MmeQuignon has joined #nixos
alexherbo2 has quit [Remote host closed the connection]
luxemboye has joined #nixos
domogled has quit [Quit: domogled]
m4ts has quit [Ping timeout: 260 seconds]
zups has quit []
jimkooch has quit [Quit: leaving]
m4ts has joined #nixos
<nly> pip install simple-httpfs
<nly> simple-httpfs ->
<nly> import numpy as np
<nly> ModuleNotFoundError: No module named 'numpy'
<nly>
m4ts has quit [Ping timeout: 256 seconds]
<hexa-> nly: use a virtualenv if you want to resolve python dependencies outside of nix
<{^_^}> [nix] @edolstra merged pull request #4530 → libutil: EPERM from kill(-1, ...) is fine → https://github.com/NixOS/nix/pull/4530
m4ts has joined #nixos
<{^_^}> [nix] @edolstra merged pull request #4487 → Copy ca derivation outputs → https://github.com/NixOS/nix/pull/4487
<{^_^}> [nix] @edolstra closed pull request #4238 → Substitute drv outputs → https://github.com/NixOS/nix/pull/4238
alexherbo2 has joined #nixos
<hexa-> ,locate pypi-server
graf_blutwurst has joined #nixos
<{^_^}> Couldn't find in any packages
<yaymukund> how come nixos-rebuild swicth requires sudo but nix-collect-garbage -d does not?
<{^_^}> [nixpkgs] @dotlambda merged pull request #114184 → [20.09] mdbook: 0.4.2 -> 0.4.5 → https://github.com/NixOS/nixpkgs/pull/114184
<woffs> Is there a reason why tor-browser-bundle-bin is still at 10.0.9 (while tor-browser-linux64-10.0.9_en-US.tar.xz not downloadable)? Recent version is 10.0.12.
<{^_^}> [nixpkgs] @thefloweringash opened pull request #114456 → elk: 7.5.1 -> 7.11.1 → https://github.com/NixOS/nixpkgs/pull/114456
orivej has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « libglvnd: Add myself as maintainer »: https://git.io/JtbPQ
vidbina has joined #nixos
dev_mohe has joined #nixos
<{^_^}> [nix] @edolstra pushed 3 commits to master: https://git.io/JtbPp
<{^_^}> [nix] @edolstra merged pull request #4571 → Make `DerivationGoal::drv` a full Derivation → https://github.com/NixOS/nix/pull/4571
<{^_^}> [nixpkgs] @benneti opened pull request #114457 → git-credential-gopass: init at 1.12.0 → https://github.com/NixOS/nixpkgs/pull/114457
<qyliss> yaymukund: nix-collect-garbage -d will only clean up your user profiles if run as non-root
<qyliss> to gc _everything_ you need to run it as root, but it doesn't require it because it can still find some garbage even if it doesn't have root privs
<graf_blutwurst> Can somone help me out? https://gist.github.com/GrafBlutwurst/1d22752be7665d224c63e9f7138555ee fails to build but i can't see the error in nix-shell --debug shell.nix at all. I might just be blind right now
<yaymukund> ah! that makes sense qyliss. thank you
mkaito has joined #nixos
mkaito has quit [Changing host]
mkaito has joined #nixos
<yaymukund> i just got nix running for first time in a vm and it is very exciting ^^
statusfa1led is now known as statusfailed
<qyliss> nice :)
statusfailed is now known as Guest334
Guest334 has quit [Quit: leaving]
statusfa1led has joined #nixos
mayhew has joined #nixos
<{^_^}> [nixpkgs] @domenkozar opened pull request #114458 → haskell.compiler.ghc8104: add ghc-8.10.4 → https://github.com/NixOS/nixpkgs/pull/114458
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @pnotequalnp opened pull request #114459 → libjwt: init at 1.12.1 → https://github.com/NixOS/nixpkgs/pull/114459
statusfa1led is now known as statusfailed
<{^_^}> [nixpkgs] @primeos pushed to master « libglvnd: Switch to the new official repository »: https://git.io/JtbXr
thc202 has quit [Ping timeout: 240 seconds]
ddellacosta has quit [Ping timeout: 276 seconds]
thc202 has joined #nixos
<nly> thanks hexa
inf^ is now known as inf
<viric> Ericson2314: Have you ever used the nixpkgs cross compilers to deploy to a common system with a usual sysrooT?
inferno_geek[m] has joined #nixos
nly has left #nixos ["ERC (IRC client for Emacs 27.1)"]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114460 → lazarus: 2.0.10-2 -> 2.0.12 → https://github.com/NixOS/nixpkgs/pull/114460
ahmedelgabri has quit [Ping timeout: 272 seconds]
vrinek has joined #nixos
dev_mohe has quit [Quit: dev_mohe]
<yaymukund> without home-manager, nixos doesn't manage your dotfiles. is that correct?
<vrinek> yaymukund: afaik, yes
rauno has joined #nixos
<rauno> Morning, is there a python packagte to read/edit nix attribute sets ?
<yaymukund> vrinek: thank!
<{^_^}> [nixpkgs] @mweinelt opened pull request #114461 → salt: 3002.2 -> 3002.5 → https://github.com/NixOS/nixpkgs/pull/114461
thc202 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @adisbladis opened pull request #114463 → emacs.pkgs.telega: Apply patch to always prefer fixed store path to server → https://github.com/NixOS/nixpkgs/pull/114463
bitmapper has joined #nixos
avo has joined #nixos
avo has quit [Client Quit]
risson_ is now known as risson
thc202 has joined #nixos
m4ts has quit [Ping timeout: 264 seconds]
ddellacosta has joined #nixos
fendor has joined #nixos
ddellacosta has quit [Ping timeout: 264 seconds]
m4ts has joined #nixos
m4ts has quit [Ping timeout: 240 seconds]
m4ts has joined #nixos
brown121407 has joined #nixos
<sterni> Graf_Blutwurst: seems like sbt fails to build with jre = jre8;
<sterni> err nvm
<brown121407> Hi! I installed MS Teams from Nix (I'm using just the package manager; the host operating system is Guix), but when I try to start it it says: /home/seamas/.nix-profile/bin/teams: error while loading shared libraries: libffmpeg.so: cannot open shared object file: No such file or directory
<sterni> Graf_Blutwurst: that shell.nix works perfectly fine for me
<brown121407> I tried with both ffmpeg adding ffmpeg to the Nix profile, but it didn't help.
<brown121407> Has anyone else encountered this issue?
<{^_^}> [nixpkgs] @FRidh merged pull request #114432 → pytest-timeout: remove test → https://github.com/NixOS/nixpkgs/pull/114432
Hurttila has joined #nixos
mkaito has quit [Quit: WeeChat 3.0]
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #114464 → nixos/ksm: rewrite using systemd-tmpfiles → https://github.com/NixOS/nixpkgs/pull/114464
<{^_^}> [nixpkgs] @primeos pushed to master « tdesktop: 2.6.0 -> 2.6.1 »: https://git.io/JtbyE
dev_mohe has joined #nixos
<{^_^}> [nixpkgs] @ncfavier opened pull request #114465 → nixos/getty: add services.getty.extraArgs → https://github.com/NixOS/nixpkgs/pull/114465
ahmedelgabri has joined #nixos
hiro98 has joined #nixos
respawn_ has joined #nixos
afreak_ has joined #nixos
ddellacosta has joined #nixos
jdelStrother has joined #nixos
<jdelStrother> Is pkgs/development/ruby-modules/runtests.sh broken for everyone or just me? I get an error about "called with unexpected argument 'stdenv'", but it seems like it's been broken for a very long time
ddellacosta has quit [Ping timeout: 276 seconds]
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
supercoven has joined #nixos
thc202 has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @primeos opened pull request #114466 → libglvnd: Change the license from BSD-2-Clause to MIT → https://github.com/NixOS/nixpkgs/pull/114466
thc202 has joined #nixos
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/0e499fde7af (from 10 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
berberman_ has joined #nixos
berberman has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @maralorn pushed to haskell-updates « haskellPackages.haskell-language-server: Fix build »: https://git.io/Jtb93
<{^_^}> [nixpkgs] @maralorn pushed to haskell-updates « haskellPackages.haskell-language-server: Fix build »: https://git.io/Jtb9B
<maralorn> cough So good that the bot doesn‘t tell anyone that I needed to force push …
orivej has quit [Ping timeout: 276 seconds]
<sterni> maralorn: it is silently organizing a pitchfork mob, just you wait
<maralorn> sterni: I will give a free drink of their choice to anyone who pulled that branch in the two minutes …
<sterni> hehe
<{^_^}> [nixpkgs] @timokau pushed to revert-114425-auto-update/eclib « Revert "eclib: 20190909 -> 20210223" »: https://git.io/Jtb9y
<sterni> maralorn: did you have a look at haskellPackages.cabal-install yet?
<sterni> maralorn: seems like the 8.10 set doesn't like the new version from stackage-nightly and throws
<sterni> i. e. assertion ((super).cabal-install.version == "3.2.0.0") failed at configuration-ghc-8.10.x.nix
<maralorn> sterni: As a matter of fact I have a fix that I am testing locally now. And I accidentally commited that fix in the above push so I needed to amend the commit.
<{^_^}> [nixpkgs] @timokau merged pull request #113603 → sage: disable intermittent test and fix threejs breakage → https://github.com/NixOS/nixpkgs/pull/113603
<sterni> maralorn: nice, I've been meaning to have a look at it, but was too tired yesterday
<maralorn> sterni: My problem is that from my experience I don‘t know if we should build cabal-install 3.4.0.0 for ghc 8.10 or stay with 3.2. But I am trying to build 3.4 now and see how it goes.
meh` has joined #nixos
zupo has joined #nixos
aexoxea has joined #nixos
aexoxea has quit [Client Quit]
aexoxea has joined #nixos
exoaoxe has joined #nixos
<sterni> maralorn: the removal of sandbox and v1-sdist is pretty substantial I guess
exoaoxe has quit [Client Quit]
dev_mohe has quit [Quit: dev_mohe]
jdelStrother has quit [Quit: Ping timeout (120 seconds)]
<maralorn> sterni: Yeah, so all the more a reason to update, right?^^
bnjmnt4n[m] has joined #nixos
<sterni> maralorn: I guess we might as well if we want to have 3.4 in 21.05 so we notice any issues as early as possible on unstable?!
<maralorn> sterni: I don‘t know. I don‘t expect a lot of breakage tbh.
bdju has quit [Read error: Connection reset by peer]
<maralorn> But right now I am having trouble with getting it to build.^^
bdju has joined #nixos
<maralorn> Because it needs a newer random, and because everyone loves property tests, if you bump random you rebuild the tests of the wohl ecosystem …
<sterni> :|
<sterni> I think nothing is as agonizing as haskell building all 500 modules of a package _again_ for the tests
<Taneb> If it's packaged properly it shouldn't
<Taneb> However nixpkgs' Haskell package sets builds all the packages both without and with profiling information
<maralorn> Taneb: What does it have to do with profiling?
<simpson> sterni: The npm generate.sh is agonizing if you have a slow network. There might be other subsystems that need to check every package like that, but IMO npm's the worst.
<Taneb> The "building all 500 modules twice" thing sterni mentioned
<maralorn> Oooh, it does that??
<Taneb> Yeah
<sterni> Taneb: it also happens when I build stuff locally with cabal-install
<sterni> seems to be a default setting
<Taneb> sterni: huh
<maralorn> I thought sterni was talking about, when you compile the project successfully but a test breaks, and then you do something to fix the test but you always need to recompile because it's in the same derivation …
<sterni> maralorn: that as well, but also all modules are compiled twice with tests
<Taneb> Is this your packages or someone else's?
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @timokau merged pull request #112795 → sourcetrail: fix darwin build → https://github.com/NixOS/nixpkgs/pull/112795
jdelStrother has joined #nixos
jdelStrother has quit [Client Quit]
cfricke has quit [Quit: WeeChat 3.0.1]
<{^_^}> [nix] @edolstra pushed to master « nix flake update: Recreate the lock file »: https://git.io/Jtb7t
luxemboye has quit [Remote host closed the connection]
oida has quit [Remote host closed the connection]
oida has joined #nixos
emp has quit [Ping timeout: 256 seconds]
luxemboye has joined #nixos
zupo has joined #nixos
ddellacosta has joined #nixos
alexherbo2 has quit [Ping timeout: 256 seconds]
<sterni> Taneb: both
alexherbo2 has joined #nixos
ddellacosta has quit [Ping timeout: 264 seconds]
<Taneb> sterni: are any of them publically available?
<{^_^}> [nixpkgs] @thiagokokada opened pull request #114467 → babashka: sync native-image arguments with upstream → https://github.com/NixOS/nixpkgs/pull/114467
zebrag has joined #nixos
thc202 has quit [Ping timeout: 240 seconds]
thc202 has joined #nixos
alexherbo2 has quit [Ping timeout: 256 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @adisbladis merged pull request #114463 → emacs.pkgs.telega: Apply patch to always prefer fixed store path to server → https://github.com/NixOS/nixpkgs/pull/114463
emp has joined #nixos
<sterni> Taneb: but I noticed that you can avoid the issue by passing --enable-tests to v2-build
<sterni> maybe we should pass that flag also when doCheck = true;
mallox has quit [Quit: WeeChat 3.0.1]
<Taneb> Ah, you are running "cabal build" and then "cabal test", or equivalent?
<sterni> cabal v2-build --enable-tests && cabal v2-test
<sterni> but with the nix derivation in that repo always builds every library module twice
zupo has joined #nixos
m4ts has quit [Ping timeout: 256 seconds]
<Taneb> The nix build building every library module twice is for profiling, not testing
zupo has quit [Client Quit]
<Taneb> You can turn that off by putting "enableProfiling = false;" somewhere
<sterni> checks out I enabled libraryprofiling
graf_blutwurst has quit [Quit: WeeChat 3.0]
philr has quit [Ping timeout: 276 seconds]
mkaito has joined #nixos
mkaito has quit [Changing host]
mkaito has joined #nixos
<{^_^}> [nixpkgs] @timokau closed pull request #114178 → tridactyl-native: 1.20.4 -> 1.21.0 → https://github.com/NixOS/nixpkgs/pull/114178
<{^_^}> [patchelf] @edolstra merged pull request #266 → fix wrong cast → https://github.com/NixOS/patchelf/pull/266
sss2 has quit [Quit: Leaving]
nek0 has quit [Quit: The Lounge - https://thelounge.chat]
<Reventlov> Hey there
<rauno> When deploying with nixops, does the nix-serve provided http subtituter must be in nix.conf or it can be defined in nixops parameters also? It doesnt seem to work with --option defining
aexoxea has quit [Quit: Goodbye!]
<Reventlov> I want to modify a checkPhase using an overlay to add some flags to some command line, but this checkPhase references other stuff from the package (and, in particular, a pythonEnv defined with some let ... in)
<Reventlov> How can I do that, easily ?
slby[m] has joined #nixos
<slby[m]> What does skipping suscpicious writable file mean?
<{^_^}> [nix] @edolstra pushed to master « flake.lock: Update »: https://git.io/Jtbbz
gustavderdrache has joined #nixos
<sterni> Reventlov: that's not possible without modifiying the derivation, if you want something like that you have to create a similar (if not equal) pythonEnv yourself
<{^_^}> [nixpkgs] @edolstra merged pull request #111955 → e2tools: 0.0.16 -> 0.1.0 → https://github.com/NixOS/nixpkgs/pull/111955
<Ericson2314> viric: I am not sure what you mean?
<Ericson2314> the nixpkgs cross stuff doesn't use any --sysroot right now, because it works the same way as the native stuff
<Reventlov> sterni: meh, ok, thanks :)
<Ericson2314> My favorite is the LLVM cross, where LLVM Clang compiler-rt libc++ are all built separately. If GCC would do the same, we could radically simplify cc-wrapper
<meh`> np
<{^_^}> [nixpkgs] @maralorn opened pull request #114469 → [haskell-updates] haskellPackages.cabal-install: Fix build for 3.4.0.0 → https://github.com/NixOS/nixpkgs/pull/114469
<sterni> Reventlov: which derivation was it?
nhs has joined #nixos
m4ts has joined #nixos
<Reventlov> ns-3
cartwright has joined #nixos
cantstanya has quit [Remote host closed the connection]
avn has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #114470 → python3Packages.python-awair: init at 0.2.1 → https://github.com/NixOS/nixpkgs/pull/114470
<sterni> Reventlov: I wonder if it'd be feasible to just use pythonEnv as nativeBuildInput as well instead of python
<sterni> would avoid the interpreter confusion
<sterni> but could be detremental to cross compilation possibly? not sure
ddellacosta has joined #nixos
dev_mohe has joined #nixos
jimkooch has joined #nixos
m4ts has quit [Ping timeout: 256 seconds]
<jimkooch> I lost my $USER .nix-profile symlink to store. How do I fixed this? Is deleting my username from configuration.nix the only way?
m4ts has joined #nixos
<jimkooch> so .nix-defexpr and .nix-profile
<jimkooch> have broken links in them... i read a howto to delete user in configuration.nix, but before is there an easier way to re-link my user to store?
ddellacosta has quit [Ping timeout: 276 seconds]
<clever> jimkooch: defexpr is automatically updated when using nix-channel
<clever> jimkooch: and .nix-profile should repair itself when you use nix-env
<clever> but if the old state was lost, then it wont have the old things you had installed
Jd007 has joined #nixos
Supersonic has quit [Quit: Bye]
<{^_^}> [nix] @edolstra pushed to ca/build-remote « Update src/build-remote/build-remote.cc »: https://git.io/JtbAm
Supersonic has joined #nixos
mallox has joined #nixos
<{^_^}> [nix] @edolstra pushed to ca/build-remote « Update src/build-remote/build-remote.cc »: https://git.io/JtbAY
<{^_^}> [nix] @edolstra pushed to ca/build-remote « Update src/libstore/build/derivation-goal.cc »: https://git.io/JtbAc
mallox has quit [Client Quit]
<{^_^}> [nixpkgs] @fabaff opened pull request #114472 → python3Packages.simplehound: init at 0.6 → https://github.com/NixOS/nixpkgs/pull/114472
<{^_^}> [nixpkgs] @fabaff opened pull request #114473 → python3Packages.diskcache: 5.1.0 -> 5.2.1 → https://github.com/NixOS/nixpkgs/pull/114473
<jimkooch> clever: ok.. after `nix-env -i xxx`, my ~/.nix-profile/ is re-link. But my ~/.nix-defexpr/channels is still broken link. How to fix this broken link?
<{^_^}> [nixpkgs] @NeQuissimus opened pull request #114474 → sbt: Add timeout to checks → https://github.com/NixOS/nixpkgs/pull/114474
<jimkooch> ok.. `nix-channel --update` fixed it
<{^_^}> [nix] @regnat pushed to ca/build-remote « Simplify the case where the drv is a purely input-addressed one »: https://git.io/JtbAr
mayhew has quit [Quit: leaving]
jimkooch has quit [Quit: leaving]
nschoe has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
jimkooch has joined #nixos
<jimkooch> I have androidstudio-4.4.1 which I launch via `nix-shell -p android-studio -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/7138a338b58713e0dea22ddab6a6785abec7376a.tar.gz --run android-studio`. How do, I instead install that and available in my profile rather than nix-shell as shown?
meh` has quit [Ping timeout: 265 seconds]
<kunrooted[m]> how am I supposed to tweak and patch suckless utilities in nixOS while using home-manager? I've heard I can provide config.h as a patch or something, but, any examples on how to do so?
<{^_^}> [nix] @edolstra merged pull request #4477 → Build ca derivations remotely → https://github.com/NixOS/nix/pull/4477
<kunrooted[m]> since I've been asking here a while ago, well, you can be proud
<kunrooted[m]> kinda progress, haven't customized yet tho
rednaZ[m] has joined #nixos
<rednaZ[m]> builtins vs stdenv.lib ?
ddellacosta has joined #nixos
<avn> Folks! Anyone use nix+cuda? (on ubuntu, not on nixos)
vidbina has quit [Ping timeout: 276 seconds]
<rednaZ[m]> Also, am I the only one who thinks identifying a package by its name in https://nixos.org/manual/nixpkgs/stable/#sec-allow-unfree is a stupid idea? Names can change and, worse, are not unique. What would be a better alternative?
<{^_^}> [nixpkgs] @peti pushed 436 commits to haskell-updates: https://git.io/JtbpJ
Lorenzoas3ii[m] has quit [Quit: Idle for 30+ days]
a7p[m] has quit [Quit: Idle for 30+ days]
Hurttila has quit [Ping timeout: 240 seconds]
jimkooch has quit [Quit: leaving]
chisui has quit [Ping timeout: 240 seconds]
<tomberek> avn: i've fought the cuda battle, what do you need?
jimkooch has joined #nixos
jimkooch has quit [Client Quit]
zupo has joined #nixos
awmv has joined #nixos
<avn> tomberek: How I can hint application, where it can load libcuda.so?
<numkem> I've been setting up prometheus on my homelab in nixos rather than docker and while I still set services.prometheus.exporters.node = true it doesn't create the systemd unit
afreak_ has quit [Ping timeout: 264 seconds]
<tomberek> avn: i've just dealt with this yesterday. I find myself adding this to the environment and it seems to work well (fixup the versions as needed): LD_LIBRARY_PATH="${pkgs.stdenv.cc.cc.lib}/lib:${pkgs.cudatoolkit_11_0}/lib:${pkgs.cudnn_cudatoolkit_11_0}/lib:${pkgs.cudatoolkit_11_0.lib}/lib:${pkgs.linuxPackages.nvidia_x11}/lib";
<tomberek> on ubuntu you may want to point it at the native libraries if you have them installed
<tomberek> (depends on how you are using it)
nek0 has joined #nixos
<{^_^}> [nixpkgs] @MetaDark opened pull request #114476 → yabridge, yabridgectl: 3.0.0 -> 3.0.1 → https://github.com/NixOS/nixpkgs/pull/114476
<{^_^}> [nixpkgs] @tomberek merged pull request #110147 → nats-streaming-server: 0.19.0 -> 0.20.0 → https://github.com/NixOS/nixpkgs/pull/110147
ahmedelgabri has quit [Ping timeout: 272 seconds]
ncl3_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
ncl3 has joined #nixos
respawn_ has quit [Read error: Connection reset by peer]
<viric> How would one use the nix cross compilers (or nix compilers) targetting a usual sysroot?
<avn> tomberek: yup. At least probbaly we have two problems overlapping -- one with libcuda lookup, second one was libgst_foo_cuda.so itself (is a GStreamer plugin using cuda)
<viric> /lib/ld-linux.so, etc.
sangoma has quit [Ping timeout: 246 seconds]
<tomberek> avn: i know i've gotten the gstreamer CUDA  working, it took a few more paths... but i do recall it worked (though sadly for my video workflow it wan't much of a speedup)
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
stuebinm[m]1 has joined #nixos
erasmas has joined #nixos
chisui has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #114457 → git-credential-gopass: init at 1.12.0 → https://github.com/NixOS/nixpkgs/pull/114457
avaq has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @vbgl opened pull request #114478 → ocamlPackages.dune: rename as dune_1 and disable for OCaml ≥ 4.12 → https://github.com/NixOS/nixpkgs/pull/114478
<{^_^}> [nixpkgs] @tomberek merged pull request #110069 → minizip2: 2.10.4 -> 2.10.6 → https://github.com/NixOS/nixpkgs/pull/110069
alexherbo2 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114479 → libtpms: 0.7.4 -> 0.8.0 → https://github.com/NixOS/nixpkgs/pull/114479
ahmedelgabri has joined #nixos
<tad-lispy[m]> Hello! I'm proud to finally set up NixOS on my laptop to a working state. There are few challenges still. One is multi display setup. I use Gnome on Wayland and have two monitors (built-in and external). In Gnome settings I set scaling on the external to 200%. It is also my primary monitor. Now GTK apps look correct, but non-GTK apps (Firefox, Electron based apps, OBS Studio) are scaled incorrectly on the built-in screen.
<tad-lispy[m]> Everything is too big.
<tad-lispy[m]> On Ubuntu with X I got good results by enabling fractional scaling, even though I only use integer values. Somehow it scales all apps correctly.
i1l has quit [Quit: Quit]
i1l has joined #nixos
<sterni> tad-lispy[m]: non-GTK in wayland or xwayland applications?
davidv7 has quit [Read error: Connection reset by peer]
<tad-lispy[m]> How do I know?
strobelight has joined #nixos
<sterni> checking the process monitor if they are child processes of Xwayland is what I always do
<sterni> idk if there's a better way
<tad-lispy[m]> 👀
<dutchie> my favourite way to check wayland v xwayland is to launch xeyes and see if they follow my pointer over that window
<sterni> gotta remember that one
<tad-lispy[m]> I have no xeyes. What's the package?
<sterni> tad-lispy[m]: xorg.xeyes
<tad-lispy[m]> They do follow.
<tad-lispy[m]> And you are right - they don't follow over alacritty, which is not GTK+, right?
<sterni> tad-lispy[m]: okay, DPI issues with Xwayland are relatively common
<sterni> tad-lispy[m]: try having a .Xresources somewhere with the content `Xft.dpi: 96`
<sterni> tad-lispy[m]: and do an xrdb -load <file>
<tad-lispy[m]> Done. Nothing happened. Do I need to restart something?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114481 → liblinear: 2.42 -> 2.43 → https://github.com/NixOS/nixpkgs/pull/114481
<sterni> tad-lispy[m]: run realpath $(type -p Xwayland) first and tell me the version it says in the store path
dev_mohe has quit [Quit: dev_mohe]
<sterni> I was thinking of this, but seems like nixos-unstable has a version where this is supposedly fixed https://github.com/swaywm/sway/wiki#after-unplugging-an-external-display-some-applications-appear-too-large-on-my-hidpi-screen
<tad-lispy[m]> `/nix/store/wr5j5c4f108bhb8lqxzx7mf29yah2x32-xwayland-1.20.10/bin/Xwayland`
<sterni> tad-lispy[m]: okay supposedly fixed
<sterni> tad-lispy[m]: you can try it anyways just to be sure, close all X11 applications, kill Xwayland and restart them again
<sterni> tad-lispy[m]: alacritty has native wayland support, does it scale correctly?
<tad-lispy[m]> Ok, be back...
<tad-lispy[m]> Yes, it does.
<tad-lispy[m]> Done, but I see no difference.
<tad-lispy[m]> I put the file in `~/.Xresources`.
<sterni> tad-lispy[m]: did you xrdb -load it?
<tad-lispy[m]> Yes, before killing Xwayland.
<tad-lispy[m]> When I killed it the DM died and I had to log in again.
<sterni> I assume the Xresources fix is not it then
<Yaniel> for a moment I thought you were talking about D&D there
<tad-lispy[m]> Haha
<tad-lispy[m]> No, she's fine.
<dutchie> does xwayland load ~/.Xresources by default? i vaguely remember having to put an explicit `xrdb -load ~/.Xresources` in my .xsession/.xinitrc files
<sterni> it's possible
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114444 → mpd: 0.22.5 -> 0.22.6 → https://github.com/NixOS/nixpkgs/pull/114444
<sterni> I have it loaded in my sway config, but it's also not in my home either
sangoma has joined #nixos
<{^_^}> [nixpkgs] @jansol opened pull request #114482 → pipewire: 0.3.21 -> 0.3.22 → https://github.com/NixOS/nixpkgs/pull/114482
<slby[m]> How can I supply a makefile as an argument that is not at the root src of the repo for mkDerivation?
<tad-lispy[m]> I'll restart and get back to you.
bennofs_ has joined #nixos
<sterni> tad-lispy[m]: is that related to your issues? https://gitlab.gnome.org/GNOME/mutter/-/issues/1569
<sterni> seems pretty similar description
<Yaniel> slby[m]: you could always override buildPhase to do `make -C blah`
<Yaniel> (and installPhase)
<sterni> checking xrandr seems to be a good shout for debugging
<slby[m]> Yaniel: That was an aspect I tried, how can I get make into scope?
<Yaniel> or you could cd into the right directory
cognemo has joined #nixos
<Yaniel> make should be part of stdenv
srk has quit [Remote host closed the connection]
srk has joined #nixos
ahmedelgabri has quit [Ping timeout: 240 seconds]
jonringer has joined #nixos
<slby[m]> I get that error
<slby[m]> line 3: make: command not found
<slby[m]> but maybe I need to add gnumake package then?
<tad-lispy[m]> sterni: yes, description looks exactly like my issue.
<{^_^}> [nixpkgs] @adisbladis opened pull request #114483 → libayatana-appindicator: Don't propage build inputs → https://github.com/NixOS/nixpkgs/pull/114483
<tad-lispy[m]> Let me try xrandr.
<avn> tomberek: btw which is more correct GST_PLUGIN_SYSTEM_PATH_1_0 or GST_PLUGIN_SYSTEM_PATH?
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JtNvV
<tomberek> avn: "_1_0" is better if memory serves
<{^_^}> [nixpkgs] @adisbladis opened pull request #114484 → emacs.pkgs.pdf-tools: Remove references to dev outputs in epdfinfo → https://github.com/NixOS/nixpkgs/pull/114484
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114453 → plex: 1.21.4.4054-bab510e86 -> 1.21.4.4079-1b7748a7b → https://github.com/NixOS/nixpkgs/pull/114453
sangoma has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @adisbladis opened pull request #114485 → firefox-bin: Remove alsa/libpulseaudio dev outputs → https://github.com/NixOS/nixpkgs/pull/114485
<sterni> tad-lispy[m]: at least we now know what the issue is right :/
<sterni> tad-lispy[m]: the thread mentions that that is only available when running inside Xwayland for some reason
<sterni> tad-lispy[m]: so you'd need to get an X11 terminal temporarily
<sterni> i guess ?!
<slby[m]> Yaniel: Thanks I just copied the contents of the shell script and then it recognized it had make.
<{^_^}> [nixpkgs] @adisbladis opened pull request #114486 → gst_1_all.gst-plugins-{bad,good}: Remove gstreamer dev output from closures → https://github.com/NixOS/nixpkgs/pull/114486
<tad-lispy[m]> Finished reading the issue and not sure where to go from here.
<tad-lispy[m]> One thing that stands out is this `org.gnome.mutter` schema missing. I ran into this before.
afreak_ has joined #nixos
<tad-lispy[m]> As I said on Ubuntu I had same problems and then enabled fractional scaling. Even with same, integer values all apps were scaled correctly.
<tad-lispy[m]> So I was trying to do this, following Arch Wiki.
vidbina has joined #nixos
malook has joined #nixos
<tad-lispy[m]> Any ideas about this missing schema?
<sterni> tad-lispy[m]: have you tried setting the schema from within xwayland, e. g. by temporarily using xterm for that?
<tad-lispy[m]> No, let me try.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114132 → clips: 6.30 -> 6.31; supersedes and closes #109914 → https://github.com/NixOS/nixpkgs/pull/114132
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114384 → pythonPackages.google-auth: add missing dependency on six → https://github.com/NixOS/nixpkgs/pull/114384
<tad-lispy[m]> You mean same command (`gsettings set org.gnome.mutter experimental-features '["scale-monitor-framebuffer"]'`) but from `xterm` running in a Wayland session?
<tad-lispy[m]> Same effect, no such schema.
<sterni> okay, unfortunate
jimmiehansson has quit [Remote host closed the connection]
<sterni> the issue mentioned something about it only being available in X?!
<tad-lispy[m]> Interestingly the xterm is absolutely tiny on the 4K monitor.
AmandaC_ has quit [Ping timeout: 260 seconds]
<avn> tomberek: one more mandatory variable -- GST_REGISTRY_1_0=/dev/null
<avn> may be eveno worhth to make "no registry" is a default on nixos
<tad-lispy[m]> As far as I understand someone says that `xrandr` has read-only access to Xwayland. So I guess that's why you can't set the scaling?
AmandaC_ has joined #nixos
<radvendii> is there a way to build a Mac .app bundle with nix? in particular collecting all of the libraries the binary depends on would be nice. a bit like the windows dll hell problem we run into when cross-compiling for windows
sangoma has joined #nixos
<tad-lispy[m]> As for the mutter schema considering that Mutter is a wayland compositor it wouldn't make sense to be only available in Xorg, right?
<radvendii> I got around it on windows by making all the libraries static but that's not working on mac
<{^_^}> [nixpkgs] @bobrik opened pull request #114487 → llvmPackages_11.openmp: make it compile on aarch64-darwin → https://github.com/NixOS/nixpkgs/pull/114487
<{^_^}> [nixpkgs] @pborzenkov opened pull request #114488 → google-cloud-sdk: fix searching for cloud_sql_proxy on the PATH → https://github.com/NixOS/nixpkgs/pull/114488
malook has quit [Quit: malook]
ahmedelgabri has joined #nixos
AmandaC_ has quit [Ping timeout: 264 seconds]
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/113092f5531 (from 6 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<superbaloo> first time doing that, I got a PR affecting a package where I'm a maintainer
<superbaloo> Can I merge that myself?
<superbaloo> can I trigger a robot to merge it for me?
civodul has joined #nixos
cole-h has joined #nixos
<hexa-> unfortuantely not
<hexa-> but please review it approve it or request changes
philipcristiano has quit [Ping timeout: 258 seconds]
wpcarro has quit [Ping timeout: 272 seconds]
<superbaloo> already did :)
<superbaloo> thank you!
<{^_^}> [nixpkgs] @7c6f434c merged pull request #114460 → lazarus: 2.0.10-2 -> 2.0.12 → https://github.com/NixOS/nixpkgs/pull/114460
jared-w has quit [Ping timeout: 272 seconds]
JadoJodo has quit [Ping timeout: 272 seconds]
jared-w has joined #nixos
wpcarro has joined #nixos
nz__ has quit [Ping timeout: 268 seconds]
mitsuhiko has quit [Ping timeout: 240 seconds]
philipcristiano has joined #nixos
<sterni> tad-lispy[m]: yes about xrandr, but you can at least inspect the current output scaling for X
<sterni> tad-lispy[m]: for the schema — stranger things have happened
<tad-lispy[m]> :D
etrepum has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @NinjaTrappeur opened pull request #114489 → prosody: 0.11.7 -> 0.11.8 → https://github.com/NixOS/nixpkgs/pull/114489
mitsuhiko has joined #nixos
JadoJodo has joined #nixos
nz__ has joined #nixos
etrepum has joined #nixos
AmandaC_ has joined #nixos
<tad-lispy[m]> Not sure how to read it.
<sterni> tad-lispy[m]: iirc the non-indented line is always the phyisical size and the indented are the modes available
sangoma has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @baloo opened pull request #114491 → libtpms: 0.7.4 -> 0.8.0 → https://github.com/NixOS/nixpkgs/pull/114491
<sterni> tad-lispy[m]: so in this case it says it's mapped 100% scaling (which we already kinda knew)
<tad-lispy[m]> Yes.
afreak_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @7c6f434c merged pull request #114406 → qt515 compatibility for qpdfview 0.4.18 → https://github.com/NixOS/nixpkgs/pull/114406
<tad-lispy[m]> So if the scaling would be applied, it would be something like `1920x1080`, right?
orivej has joined #nixos
ahmedelgabri has quit [Ping timeout: 272 seconds]
<sterni> tad-lispy[m]: if it's the dump scaling that blurs everything
<NieDzejkob> This commit stopped exposing $releaseDir in package builds, which breaks alacritty: https://github.com/NixOS/nixpkgs/commit/9757c7101a0527c001fa9e9832764d5dc106ff25
<NieDzejkob> How should I go about fixing this? shortTarget is let-bound, so I can't just import it...
<tad-lispy[m]> Is there a simple way to downgrade Gnome and see if it would work? The OP in issue says it was fine in 3.36.
<tad-lispy[m]> * Is there a simple way to downgrade Gnome and see if it would work? The OP in the issue says it was fine in 3.36.
<sterni> tad-lispy[m]: you can pin your nixpkgs to a revision where the gnome version was 3.36 for trying it out
<sterni> although you'd probably also miss a lot of updates you want then or even security-related stuff
<sterni> but for testing it's fine
<tad-lispy[m]> I can try it temporarily. How can I do this? I'm still learning Nix.
<sterni> nixos-rebuild switch -I nixpkgs=https://github.com/nixos/nixpkgs/archive/<commit hash>.tar.gz
<sterni> is the simplest way
vidbina has quit [Quit: vidbina]
<sterni> this just changes <nixpkgs> to that tarball instead of whatever you have in your nix-channel
<sterni> for that command only though
<tad-lispy[m]> Ok, so I need to figure out when the version was upgraded. Let me see.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114180 → wasm-pack: update deps, libressl_3_0: remove → https://github.com/NixOS/nixpkgs/pull/114180
ahmedelgabri has joined #nixos
<NieDzejkob> So, openjdk15's build is broken. Hydra has a commit ID for last working build, but the range of commits between working and broken is huge and includes a merge between staging and staging-next. Is there a way to compute which commits actually changed the derivation?
alexherbo2 has quit [Quit: Ping timeout (120 seconds)]
sangoma has joined #nixos
ahmedelgabri has quit [Ping timeout: 265 seconds]
<tad-lispy[m]> Switching. It takes time (unexpectedly). Will get back once I restart.
<{^_^}> [nixpkgs] @periodic opened pull request #114492 → cockatrice: 2020-08-23-Release-2.7.5 -> 2021-01-26-Release-2.8.0 → https://github.com/NixOS/nixpkgs/pull/114492
<shla> rmcgibbo[m], hi, after your change was merged it is still failing with 5.11 - https://hydra.nixos.org/job/nixpkgs/trunk/linuxPackages_latest.ena.x86_64-linux
<rmcgibbo[m]> shla: Hmm. Lame.
alexherbo2 has joined #nixos
<rmcgibbo[m]> I've been running it with that patch rebased onto 20.09, so maybe the different build environment between that and unsable is bad. I'll take a look.
<drozdziak1> How do I wrap PYTHONPATH in a python package?
<drozdziak1> I have a shell that includes tmuxp and docker-compose, but docker-compose pollutes the path for tmuxp
<drozdziak1> and tmuxp gets an error because it looks for pyaml in py3 territory
<shla> rmcgibbo[m], have you tried it with linuxPackages_latest? w/o latest it works fine.
justanotheruser has joined #nixos
<NieDzejkob> drozdziak1: grep for 'wrapProgram.*PYTHONPATH' for examples
justan0theruser has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @NieDzejkob opened pull request #114493 → tox-node: fix build → https://github.com/NixOS/nixpkgs/pull/114493
cocreature has joined #nixos
samhza has quit [Remote host closed the connection]
samhza has joined #nixos
<cocreature> Hi, I have a case where I want to patch nixpkgs via a patch file rather than modify a derivation via an override (because the thing I want to change is not exposed and I would need to duplicate a lot of the current derivation). What’s the best way of applying a patch to the result of fetchTarball?
qbit has quit [Quit: leaving]
<hexa-> override postPatch
<hexa-> or patches really
rajivr has quit [Quit: Connection closed for inactivity]
sangoma has quit [Ping timeout: 240 seconds]
<cocreature> hexa-: oh does the builtin have a patches attribute? I couldn’t see it in the docs
<ajs124> cocreature: wdym by "not exposed"?
<{^_^}> [nixpkgs] @fabaff opened pull request #114494 → python3Packages.slack-sdk: 3.3.0 -> 3.4.0 → https://github.com/NixOS/nixpkgs/pull/114494
<cocreature> ajs124: I want to override parts of https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/compilers/ghc/8.10.3.nix#L58 but afaict that requires me to overwrite all of preConfigure which is a bit messy
sangoma has joined #nixos
neiluj has joined #nixos
neiluj has joined #nixos
neiluj has quit [Changing host]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114277 → atom: 1.48.0 -> 1.54.0; atom-beta: broken → https://github.com/NixOS/nixpkgs/pull/114277
<ajs124> cocreature: ah. hm. you could append something to preConfigure instead of overwriting? that's not significantly less messy, but maybe slightly?
<cocreature> ajs124: yeah I can find a way to make it work more or less reasonably but a patch file to just patch the actual buildMk seemed clearer here as a short term solution. long-term I’d just like to upstream something into nixpkgs to make that easier
<{^_^}> [nixpkgs] @fabaff opened pull request #114496 → python3Packages.simplejson: 3.17.0 -> 3.17.2 → https://github.com/NixOS/nixpkgs/pull/114496
<shla> rmcgibbo[m], is this something you would be willing to have a look into? cause you seem to familiar with the matter
vidbina has joined #nixos
endformationage has joined #nixos
<rmcgibbo[m]> shla: Yes, I will look at it, but I can't right now. (Tonight or over the weekend)
redmp has joined #nixos
growpotkin has joined #nixos
dev_mohe has joined #nixos
meh` has joined #nixos
<shla> rmcgibbo[m], thanks
tarruda3 has quit [Ping timeout: 272 seconds]
tarruda3 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114159 → foundationdb60: fix build → https://github.com/NixOS/nixpkgs/pull/114159
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114445 → python3Packages.praw: 7.1.4 -> 7.2.0 → https://github.com/NixOS/nixpkgs/pull/114445
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114448 → anki-bin: 2.1.38 -> 2.1.40 → https://github.com/NixOS/nixpkgs/pull/114448
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114467 → babashka: sync native-image arguments with upstream → https://github.com/NixOS/nixpkgs/pull/114467
work_ has joined #nixos
dev_mohe has quit [Quit: dev_mohe]
<sterni> cocreature: no builtins don't support patches
vidbina has quit [Ping timeout: 256 seconds]
<sterni> cocreature: you'll need to use ifd anyways for that so you can probably apply a patch in the postfetch of fetchzip
<sterni> or extraPostFetch rather
alexherbo2 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @primeos merged pull request #113751 → libglvnd: disable asm on aarch64-darwin → https://github.com/NixOS/nixpkgs/pull/113751
hugolgst has joined #nixos
<hugolgst> do you know how to manage the hardware-configuration.nix file with nixops?
saschagrunert has joined #nixos
<lordcirth_> hugolgst, what do you mean? Nixops doesn't write files to /etc/nixos, it just applies the config
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #114496 → python3Packages.simplejson: 3.17.0 -> 3.17.2 → https://github.com/NixOS/nixpkgs/pull/114496
<lordcirth_> You can copy hardware-configuration.nix to your nixops repo and include it
<hugolgst> okay I thought there was some way to keep it on the distant machine
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #114496 → python3Packages.simplejson: 3.17.0 -> 3.17.2 → https://github.com/NixOS/nixpkgs/pull/114496
hugolgst has quit [Client Quit]
apache8080 has joined #nixos
<{^_^}> [nixpkgs] @adisbladis merged pull request #114484 → emacs.pkgs.pdf-tools: Remove references to dev outputs in epdfinfo → https://github.com/NixOS/nixpkgs/pull/114484
<{^_^}> [nix] @edolstra merged pull request #4570 → Split {,local-}derivation-goal.{cc,hh} → https://github.com/NixOS/nix/pull/4570
meh` has quit [Ping timeout: 240 seconds]
shibboleth has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
thc202 has quit [Ping timeout: 240 seconds]
berberman has joined #nixos
berberman_ has quit [Ping timeout: 258 seconds]
svrana has quit [Quit: WeeChat 2.9]
<cocreature> sterni: alright, thanks!
malook has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114497 → matrix-synapse: 1.27.0 -> 1.28.0 → https://github.com/NixOS/nixpkgs/pull/114497
saschagrunert has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 closed pull request #114497 → matrix-synapse: 1.27.0 -> 1.28.0 → https://github.com/NixOS/nixpkgs/pull/114497
malook has quit [Client Quit]
chisui has quit [Ping timeout: 240 seconds]
acarrico has joined #nixos
saschagrunert has joined #nixos
malook has joined #nixos
<ldlework> I tried to rebuild my system; can someone help me understand what's going on in this traceback? https://gist.github.com/dustinlacewell/490bee865cffe2837d0416d216a88e4d
<ldlework> Verifying archive integrity... OK
<ldlework> Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86_64 460.39/nix/store/cfxvfmsgqqp92cish7ahf8gdylmpp4yk-NVIDIA-Linux-x86_64-460.39.run: line 699: /build/makeself.bysINdYB/xz: No such file or directory
<ldlework> /nix/store/cfxvfmsgqqp92cish7ahf8gdylmpp4yk-NVIDIA-Linux-x86_64-460.39.run: line 690: /dev/tty: No such device or address
<ldlework> /nix/store/rf2s4dz3g8p8n4p306k2nxg97411kixy-builder.sh: line 10: 6 Terminated sh $src -x
<ldlework> Something to do with this maybe...
<{^_^}> [nix] @Ericson2314 opened pull request #4580 → Restore now-working build-remote-content-addressed-fixed test → https://github.com/NixOS/nix/pull/4580
<le0taku> I have noticed that something on NixOS seems to reset my home directory permissions on every reboot. Does anyone here know what could be the cause of this?
malook has quit [Quit: malook]
sangoma has joined #nixos
saschagrunert has quit [Remote host closed the connection]
<ldlework> builder for '/nix/store/l4al92fndd3qkpv6pn73s79hrqz75blr-sddm-sugar-light.drv' failed with exit code 1
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114487 → llvmPackages_11.openmp: make it compile on aarch64-darwin → https://github.com/NixOS/nixpkgs/pull/114487
<{^_^}> [nixpkgs] @peti merged pull request #114469 → [haskell-updates] haskellPackages.cabal-install: Fix build for 3.4.0.0 → https://github.com/NixOS/nixpkgs/pull/114469
redmp has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « git-annex: update to new version 8.20210223 »: https://git.io/JtNqz
redmp has joined #nixos
hyiltiz has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages to fix evaluation errors on Hydra »: https://git.io/JtNq1
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114492 → cockatrice: 2020-08-23-Release-2.7.5 -> 2021-01-26-Release-2.8.0 → https://github.com/NixOS/nixpkgs/pull/114492
i1l has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114493 → tox-node: fix build → https://github.com/NixOS/nixpkgs/pull/114493
<{^_^}> [nixpkgs] @tomberek merged pull request #110145 → libndctl: 70.1 -> 71.1 → https://github.com/NixOS/nixpkgs/pull/110145
sterni has quit [Ping timeout: 260 seconds]
hiro98 has quit [Ping timeout: 256 seconds]
sterni has joined #nixos
<tomberek> openjdk-15.0.1-ga broken on master?
<{^_^}> [nixpkgs] @symphorien merged pull request #111282 → libdrm: fix cross-compile to x86 → https://github.com/NixOS/nixpkgs/pull/111282
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114379 → sublime-merge: 2039 -> 2047; sublime-merge-dev: 2037 -> 2046 → https://github.com/NixOS/nixpkgs/pull/114379
<{^_^}> [nixpkgs] @symphorien merged pull request #113746 → numactl: enable on all linux platforms → https://github.com/NixOS/nixpkgs/pull/113746
<{^_^}> [nixpkgs] @ryantm opened pull request #114498 → monit: add ryantm to maintainers → https://github.com/NixOS/nixpkgs/pull/114498
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114396 → sbt-extras: 2021-02-04 → 2021-02-24 → https://github.com/NixOS/nixpkgs/pull/114396
<ldlework> yay broken gpu environment again
<{^_^}> [nixpkgs] @Mic92 merged pull request #114382 → libfaketime: fix clang patch → https://github.com/NixOS/nixpkgs/pull/114382
alexherbo2 has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann opened pull request #114499 → pythonPackages.fonttools: 4.20.0 -> 4.21.0 → https://github.com/NixOS/nixpkgs/pull/114499
<{^_^}> [nixpkgs] @sternenseemann opened pull request #114500 → pythonPackages.tqdm: 4.54.1 -> 4.58.0 → https://github.com/NixOS/nixpkgs/pull/114500
<ldlework> oh thank god it just needed a full reboot
<tpw_rules> where can i find information on writing an update script?
sangoma has quit [Ping timeout: 240 seconds]
ahmedelgabri has joined #nixos
Qwerky has joined #nixos
hiro98 has joined #nixos
vidbina has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages to fix evaluation errors on Hydra »: https://git.io/JtNYD
<jonreeve[m]> Anyone know how to use an older version of a package? I'm trying to fix this bug to get Megasync to work: https://github.com/NixOS/nixpkgs/issues/112572
<{^_^}> #112572 (by Mazurel, 2 weeks ago, open): MEGAsync - Segmentation fault
<jonreeve[m]> Apparently Megasync doesn't like the new cryptopp version, and so I need to tell it to use the old one
<{^_^}> [nixpkgs] @symphorien merged pull request #114205 → herwig: 7.2.1 -> 7.2.2 → https://github.com/NixOS/nixpkgs/pull/114205
<{^_^}> [nixpkgs] @wd15 opened pull request #114501 → pythonPackages.sfepy: 2019.4 -> 2020.4 → https://github.com/NixOS/nixpkgs/pull/114501
<tpw_rules> is the old version still packaged?
ahmedelgabri has quit [Ping timeout: 260 seconds]
<jonreeve[m]> I don't know. Is there a way to check?
<tpw_rules> search for cryptopp i guess
erasmas has quit [Read error: No route to host]
vidbina has quit [Read error: Connection reset by peer]
<jonreeve[m]> `jon@jon-laptop ~/C/nixpkgs (master)> nix search nixpkgs cryptopp
<jonreeve[m]> * legacyPackages.x86_64-linux.cryptopp (8.4.0)
<jonreeve[m]> Crypto++, a free C++ class library of cryptographic schemes`
<jonreeve[m]> Just the new one it looks like
<jonreeve[m]> I think it should be something like `myCryptopp = getItFromGitHubInstead http://github.com/cryptopp/old-version-here`, no?
<tpw_rules> oh sure, if this is just to use it personally then something like that would work
<tpw_rules> what i've done in those sorts of circumstances is just get the old derivation from the commit history
<jonreeve[m]> How do I put that derivation in the file above? I don't think I can just copy-paste it in, can I?
<tpw_rules> one way would be to remove cryptopp from the argument list then prefix the mkDerivation with: let cryptopp = import ./my_download_cryptopp.nix; in
vidbina has joined #nixos
erasmas has joined #nixos
m4tsa_ has joined #nixos
m4ts has quit [Ping timeout: 264 seconds]
m4ts has joined #nixos
m4tsa_ has quit [Ping timeout: 276 seconds]
m4tsa_ has joined #nixos
fendor_ has joined #nixos
m4ts has quit [Ping timeout: 276 seconds]
fendor has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @symphorien merged pull request #114271 → siril: 0.99.6 -> 0.99.8.1 → https://github.com/NixOS/nixpkgs/pull/114271
averell has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @adisbladis opened pull request #114503 → gst_all_1: Convert into a scope → https://github.com/NixOS/nixpkgs/pull/114503
<NieDzejkob> the usual way you'd do this in nixpkgs is create a cryptopp/1.2.3.nix besides cryptopp/default.nix
averell has joined #nixos
averell has quit [Remote host closed the connection]
<samueldr> f0x: the "nodev" looks right
<samueldr> I saw that you tried to nixos-install, and still have systemd-boot going, right?
averell has joined #nixos
<f0x> yeah that's what EFI boots into still
zupo has joined #nixos
* samueldr compares with own config
<samueldr> a hard question
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/113092f5531 (from 9 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<samueldr> do you know if your board correctly respects fallback UEFI loader location?
<samueldr> because IIRC systemd-boot installs to EFI/BOOT/bootx64.EFI
<samueldr> the fallback location
<f0x> it seems to be using /boot/EFI/ still, judging from the kernel versions presented
<f0x> whereas the new kernels are only in /boot/kernels/
<samueldr> I could intuit either your board (1) ignores efi vars (2) prefers fallback location
<samueldr> I think here this is "irrelevant"
<f0x> maybe I have to set efi.efiSysMountPoint then?
<samueldr> depends
<samueldr> are you using the ESP as /boot?
<samueldr> or is the ESP mounted *under* /boot %?
<samueldr> oh
<samueldr> lsblk
<samueldr> ESP is /boot AFAICT
<samueldr> that's the default assumption with NixOS
<f0x> yeah it's a single VFAT mounted as /boot
<f0x> hmm to prevent fallbacks i can just wipe /boot and nixos-install again
<samueldr> boot.loader.efi.canTouchEfiVariables = true;
* samueldr checks what the default is
<samueldr> right, so it's not changing the settings of the board if this is not set elsewhere in your config
<f0x> which would be needed for setting the new path, right?
<samueldr> yes
<samueldr> well
<samueldr> there's another option
<samueldr> the fallback loader path
bokononi2t has joined #nixos
<{^_^}> [nixpkgs] @flokli merged pull request #100433 → nixos/containers: allow containers with long names to create private networks → https://github.com/NixOS/nixpkgs/pull/100433
<f0x> ok still in systemd-boot
<samueldr> using efiInstallAsRemovable would install grub in EFI/BOOT/boox64.efi
<samueldr> bootx64*
<samueldr> there may be one advantage in doing so: if your EFI implementation is bad and loses its EFI vars, it will still boot that path
* srk looking for x230 EFI systemd-boot example. heard it's not working correctly
bokononi3t has quit [Ping timeout: 265 seconds]
<srk> on one installation. hmm, maybe I can try with mine and usb drive
<f0x> hey I see a grub now :D
Qwerky has quit [Remote host closed the connection]
<samueldr> nice
<f0x> now it's using grub to refuse to boot :P
Qwerky has joined #nixos
<samueldr> note that if you went with `canTouchEfiVariables`, losing EFI vars would most likely boot the leftover systemd-boot binary
<samueldr> (which may or may not have kernels configured left)
<f0x> yeah, to counter that probably best to wipe the /boot once
<samueldr> that's an option
<samueldr> or you might want to remove /EFI/BOOT/bootx86.efi
<samueldr> now what does "refuses to boot" mean?
<f0x> right after grub it goes back to the motherboard logo and freezes there
<{^_^}> [nixpkgs] @Wulfsta closed pull request #100135 → Add meshio, expose gmsh python api, add exdown, and add pygmsh → https://github.com/NixOS/nixpkgs/pull/100135
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann opened pull request #114504 → bspwm/unstable.nix: clean up unused file → https://github.com/NixOS/nixpkgs/pull/114504
<f0x> and nothing on the usb serial port, which is kind of the whole point
Qwerky has quit [Ping timeout: 246 seconds]
svrana has joined #nixos
apache8080 has quit [Ping timeout: 272 seconds]
<f0x> ah ok serial grub is a lost cause for now, needs ftdi or pl2303
<{^_^}> [nixpkgs] @sternenseemann opened pull request #114505 → rebol/default.nix: remove unused file → https://github.com/NixOS/nixpkgs/pull/114505
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
zebrag has quit [Client Quit]
zebrag has joined #nixos
jumper149 has joined #nixos
<jumper149> How can I create a text file in nix? I want a function that returns me the path in the nix-store that I can put into configuration.nix
<{^_^}> [nixpkgs] @peti pushed 5 commits to haskell-updates: https://git.io/JtNGd
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JtNGx
fuiltilt has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #114461 → salt: 3002.2 -> 3002.5 → https://github.com/NixOS/nixpkgs/pull/114461
<greizgh> jumper149: pkgs.writeText seems to be what you are looking for
<{^_^}> [nixpkgs] @sternenseemann closed pull request #111343 → ocamlPackages.stdlib-shims: 0.1.0 -> 0.3.0 → https://github.com/NixOS/nixpkgs/pull/111343
<{^_^}> [nixpkgs] @r-ryantm opened pull request #114506 → msitools: 0.99 -> 0.100 → https://github.com/NixOS/nixpkgs/pull/114506
philr has joined #nixos
<{^_^}> [nixpkgs] @dschrempf opened pull request #114507 → vimiv-qt: 0.8.0, new package → https://github.com/NixOS/nixpkgs/pull/114507
<{^_^}> [nixpkgs] @NieDzejkob opened pull request #114508 → alacritty: fix build → https://github.com/NixOS/nixpkgs/pull/114508
work_ has quit [Quit: Connection closed for inactivity]
justan0theruser has joined #nixos
justanotheruser has quit [Ping timeout: 260 seconds]
vidbina has quit [Ping timeout: 265 seconds]
<srid> does this work for anyone in nixos? https://justine.lol/redbean/index.html
<ToxicFrog> Finally got my nixos terminal art working:
<ToxicFrog> Now to turn it into a text mode screensaver.
<cole-h> srid: After zipping it with the index.html, doesn't work, no.
<srid> yea, same. SIGSEGV at `EINVAL/err=22/errno:2/GetLastError:0`
vrinek_ has joined #nixos
<{^_^}> jart/cosmopolitan#56 (by heikkilevanto, 8 hours ago, open): Segfault on Debian Linux, after adding a file to redbean
<rmcgibbo[m]> shla: I think the issue is that when the ena PR was merged, linuxPackages_latest was 5.10, and it built okay. But now it's linux 5.11 and it doesn't build.
vrinek has quit [Ping timeout: 272 seconds]
<yaymukund> `nix-shell '<home-manager>' -A install` - does this import home-manager and then run its `install` command, which presumably copies or symlinks things to your home directory?
<yaymukund> I'm on day 1 of nix (already got it running! so cool!), so just trying to gain an intuition :)
marsh has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @flokli merged pull request #75866 → libspnav: init at 2.3.0 → https://github.com/NixOS/nixpkgs/pull/75866
<NieDzejkob> at face value, it takes the install -A ttribute of the home-manager channel and gives you a shell with the dependencies of install available
<NieDzejkob> but there's a shellHook, so it can also run some other commands. Not sure if it actually does, I don't use home-manager
<yaymukund> ah gotcha
<yaymukund> is there an alternative, or do you just maintain dotfiles as you would in a non-nix distro?
<yaymukund> non-nixos
<{^_^}> [nixpkgs] @adisbladis merged pull request #114505 → rebol/default.nix: remove unused file → https://github.com/NixOS/nixpkgs/pull/114505
<{^_^}> [nixpkgs] @Flakebi opened pull request #114511 → [20.09] salt: 3001.3 -> 3001.6 → https://github.com/NixOS/nixpkgs/pull/114511
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-prettyprinter: disable the freakin' test suite »: https://git.io/JtNcp
<{^_^}> [nixpkgs] @ttuegel merged pull request #110536 → plasma5: 5.20 -> 5.21 → https://github.com/NixOS/nixpkgs/pull/110536
<{^_^}> [nixpkgs] @adisbladis opened pull request #114512 → emacs: Use --with-native-compilation instead of --with-nativecomp → https://github.com/NixOS/nixpkgs/pull/114512
aleph- has quit [Quit: WeeChat info:version]
<yaymukund> well, i can figure it out. thanks!
vidbina has joined #nixos
ronthecookie has quit [Quit: ZNC 1.8.2 - https://znc.in]
ronthecookie has joined #nixos
ronthecookie has quit [Excess Flood]
ronthecookie has joined #nixos
praduca has joined #nixos
mkaito has quit [Quit: WeeChat 3.0]
<{^_^}> [nixpkgs] @flokli merged pull request #114464 → nixos/ksm: rewrite using systemd-tmpfiles → https://github.com/NixOS/nixpkgs/pull/114464
<praduca> hey, anyone here use treesheets? i'm been unable to use it, it freezes at satart showing an alert sayng that an assertion failed... it wont even shut down
<praduca> don't know if it is something with my installation, but nix is all about this being not relevant, so... if someone confirms that it is broken, i will fill an report
justanotheruser has joined #nixos
<cole-h> Might as well file it anyways.
strikerlulu has quit [Ping timeout: 264 seconds]
justan0theruser has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @zimbatm pushed to master « mdsh: 0.5.0 -> 0.6.0 »: https://git.io/JtNWA
strikerlulu has joined #nixos
vidbina has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @zimbatm pushed to master « Revert "mdsh: 0.5.0 -> 0.6.0" »: https://git.io/JtNlU
vidbina has joined #nixos
<{^_^}> [nixpkgs] @zimbatm opened pull request #114513 → mdsh: 0.5.0 -> 0.6.0 → https://github.com/NixOS/nixpkgs/pull/114513
<{^_^}> [nixpkgs] @Ma27 merged pull request #114508 → alacritty: fix build → https://github.com/NixOS/nixpkgs/pull/114508
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-brittany: disable the freakin' test suite »: https://git.io/JtNlw
ahmedelgabri has joined #nixos
aleph- has joined #nixos
ahmedelgabri has quit [Ping timeout: 246 seconds]
apache8080 has joined #nixos
philr has quit [Ping timeout: 272 seconds]
cole-h has quit [Ping timeout: 265 seconds]
<jumper149> greizgh++
<{^_^}> greizgh's karma got increased to 1
<tad-lispy[m]> Regarding the previously discussed issue with scaling Xwayland apps on monitors with different DPI, I've opened an issue here: https://github.com/NixOS/nixpkgs/issues/114514
<{^_^}> #114514 (by tad-lispy, 4 minutes ago, open): No such schema “org.gnome.mutter”
erasmas has quit [Quit: leaving]
fendor_ has quit [Read error: Connection reset by peer]
necrophcodr[m] has joined #nixos
vrinek_ has quit [Ping timeout: 272 seconds]
<{^_^}> [mobile-nixos] @samueldr merged pull request #316 → bin/hydra-eval: Add hydra-like eval helper → https://github.com/NixOS/mobile-nixos/pull/316
K0kada has joined #nixos
neiluj has quit [Quit: leaving]
hiro98 has quit [Remote host closed the connection]
tom39291 has joined #nixos
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
mcornick has quit [Quit: bbl]
tom39291 has quit [Client Quit]
tom39291 has joined #nixos
<{^_^}> [nixpkgs] @vlulla opened pull request #114515 → R: 4.0.3 -> 4.0.4 → https://github.com/NixOS/nixpkgs/pull/114515
tom39291 has quit [Client Quit]
tom39291 has joined #nixos
<{^_^}> [nixpkgs] @bobrik opened pull request #114516 → soxr: add patch to fix aarch64-darwin compilation → https://github.com/NixOS/nixpkgs/pull/114516
vidbina has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @peti merged pull request #114407 → Update Haskell package set to Stackage Nightly 2021-02-25 (plus other fixes) → https://github.com/NixOS/nixpkgs/pull/114407
__monty__ has quit [Quit: leaving]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JtNRO
<{^_^}> [nixpkgs] @peti opened pull request #114517 → Update Haskell package set to Stackage Nightly 2021-02-XX (plus other fixes) → https://github.com/NixOS/nixpkgs/pull/114517
<{^_^}> [nix] @puckipedia opened pull request #4581 → Properly propagate libseccomp linker flags → https://github.com/NixOS/nix/pull/4581
<{^_^}> [nix] @puckipedia opened pull request #4582 → mk: add support for CPPFLAGS → https://github.com/NixOS/nix/pull/4582
praduca has quit [Quit: Connection closed]
<{^_^}> [nix] @puckipedia opened pull request #4583 → Revert "Add support for building JARs from Java sources" → https://github.com/NixOS/nix/pull/4583
<qyliss> puck++
<{^_^}> puck's karma got increased to 42
mcornick has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
<{^_^}> [nixpkgs] @flokli merged pull request #111342 → nixos/networkd: add missing IPv6 options → https://github.com/NixOS/nixpkgs/pull/111342
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dominikh has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @flokli merged pull request #113137 → ceph: fix bluestore by using bundled rocksdb → https://github.com/NixOS/nixpkgs/pull/113137
<{^_^}> [nixpkgs] @peti merged pull request #114515 → R: 4.0.3 -> 4.0.4 → https://github.com/NixOS/nixpkgs/pull/114515
<{^_^}> [nixpkgs] @jappeace opened pull request #114518 → haskellPackages.binary-search: unbreak → https://github.com/NixOS/nixpkgs/pull/114518
<{^_^}> [nixpkgs] @jappeace closed pull request #114518 → haskellPackages.binary-search: unbreak → https://github.com/NixOS/nixpkgs/pull/114518
dominikh has joined #nixos
dominikh is now known as Guest61651
<{^_^}> [nixpkgs] @jappeace opened pull request #114519 → haskellPackages.binary-search: unbreak → https://github.com/NixOS/nixpkgs/pull/114519
<{^_^}> [nixpkgs] @erictapen opened pull request #114520 → sub-batch: 0.3.0 -> 0.4.0 → https://github.com/NixOS/nixpkgs/pull/114520
Darkmatter66 has quit [Ping timeout: 240 seconds]
Darkmatter66 has joined #nixos
Jd007 has quit [Ping timeout: 246 seconds]
mcornick has quit [Quit: bbl]
davidv7 has joined #nixos
<{^_^}> [nixpkgs] @flokli closed pull request #16902 → systemd-bootchart → https://github.com/NixOS/nixpkgs/pull/16902
riksteri has quit [Quit: riksteri]
<hpfr> teto: the lua package digestif immediately exits with "Could not find data files" for me as shown here https://github.com/astoff/digestif/issues/2.
<hpfr> I see some folders in the nix store path that look like it but do I really need an environment variable for it to work?
<{^_^}> astoff/digestif#2 (by ACov96, 1 year ago, closed): Could not find data files
<{^_^}> [nixpkgs] @jappeace opened pull request #114521 → haskellPackages.xlsx: unbreak → https://github.com/NixOS/nixpkgs/pull/114521