Home freenode/#haskell: Logs Calendar

Logs: freenode/#haskell

←Prev  Next→ 502,152 events total
2021-05-12 07:08:21 × thunderrd quits (~thunderrd@183.182.115.120) (*.net *.split)
2021-05-12 07:09:45 × cole-h quits (~cole-h@c-73-48-197-220.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
2021-05-12 07:10:46 × Anonim001 quits (~Anonim001@140.213.148.159) (Ping timeout: 240 seconds)
2021-05-12 07:10:56 Varis joins (~Tadas@unaffiliated/varis)
2021-05-12 07:11:40 nut joins (~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr)
2021-05-12 07:18:10 ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-05-12 07:21:18 × Unhammer quits (~Unhammer@gateway/tor-sasl/unhammer) (Remote host closed the connection)
2021-05-12 07:21:50 Unhammer joins (~Unhammer@gateway/tor-sasl/unhammer)
2021-05-12 07:22:32 × ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 246 seconds)
2021-05-12 07:23:23 ubert joins (~Thunderbi@p200300ecdf005e54e6b318fffe838f33.dip0.t-ipconnect.de)
2021-05-12 07:23:45 × DarkiJah quits (~Android@213.237.86.22) (Remote host closed the connection)
2021-05-12 07:24:21 × Sgeo quits (~Sgeo@ool-18b9875e.dyn.optonline.net) (Read error: Connection reset by peer)
2021-05-12 07:25:07 × hiroaki quits (~hiroaki@2a02:8108:8c40:2bb8:7fc3:e4ce:2a81:16be) (Ping timeout: 260 seconds)
2021-05-12 07:30:08 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-05-12 07:32:02 chele joins (~chele@78.128.94.174)
2021-05-12 07:32:08 cfricke joins (~cfricke@unaffiliated/cfricke)
2021-05-12 07:32:53 gehmehgeh joins (~ircuser1@gateway/tor-sasl/gehmehgeh)
2021-05-12 07:36:14 × hexfive quits (~hexfive@50.35.83.177) (Quit: i must go. my people need me.)
2021-05-12 07:36:46 × stree quits (~stree@68.36.8.116) (Ping timeout: 252 seconds)
2021-05-12 07:36:49 × star_cloud quits (~star_clou@ec2-34-220-44-120.us-west-2.compute.amazonaws.com) (Ping timeout: 265 seconds)
2021-05-12 07:37:25 hiroaki joins (~hiroaki@2a02:8108:8c40:2bb8:f4a2:7a57:7d89:6f13)
2021-05-12 07:38:23 jrm2 joins (~jrm@freebsd/developer/jrm)
2021-05-12 07:38:59 × jrm quits (~jrm@freebsd/developer/jrm) (Ping timeout: 246 seconds)
2021-05-12 07:39:00 jrm2 is now known as jrm
2021-05-12 07:40:16 fendor joins (~fendor@178.165.130.48.wireless.dyn.drei.com)
2021-05-12 07:42:49 × apache8080 quits (~rishi@wsip-70-168-153-252.oc.oc.cox.net) (Ping timeout: 252 seconds)
2021-05-12 07:42:52 DarkiJah joins (~Android@213.237.86.22)
2021-05-12 07:42:55 × DarkiJah quits (~Android@213.237.86.22) (Excess Flood)
2021-05-12 07:44:52 kuribas joins (~user@ptr-25vy0i905bdcx4bbbsp.18120a2.ip6.access.telenet.be)
2021-05-12 07:47:18 <maerwald> how do you make pkg-config work on windows? I installed haskell-dev via chocolatey and when executing cabal, it doesn't know where pkg-config (the tool) is
2021-05-12 07:49:38 stree joins (~stree@68.36.8.116)
2021-05-12 07:50:49 ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-05-12 07:50:55 Guest87676 joins (~laudiacay@45.162.228.190)
2021-05-12 07:51:16 <[exa]> export a PKG_CONFIG_PATH?
2021-05-12 07:51:22 <[exa]> (can one export environment on windows?)
2021-05-12 07:51:39 <maerwald> excellent questions
2021-05-12 07:51:45 <maerwald> also, why would I need to do that?
2021-05-12 07:51:56 <maerwald> chocolatey is supposed to do those things for me
2021-05-12 07:52:24 <maerwald> PKG_CONFIG_PATH is about the .pc files, not the tool
2021-05-12 07:52:29 <maerwald> afair
2021-05-12 07:52:37 <maerwald> it can't find the tool
2021-05-12 07:52:53 <[exa]> yeah that might be true...then just PKG_CONFIG ?
2021-05-12 07:53:51 <lortabac> is there a way to hide some identifiers when exporting a module?
2021-05-12 07:55:29 × ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 260 seconds)
2021-05-12 07:55:40 × Guest87676 quits (~laudiacay@45.162.228.190) (Ping timeout: 265 seconds)
2021-05-12 07:57:07 <[exa]> lortabac: you mean 'as opposed to listing the identifiers you want exported' ?
2021-05-12 07:57:56 <tomsmeding> if so, then no :)
2021-05-12 07:58:32 <tomsmeding> hack would be to make your module a separate, .Internal module, and in the externally-facing module to import your .Internal module hiding some symbols (imports _can_ hide), and then re-export that whole module
2021-05-12 08:01:18 × evanjs quits (~evanjs@075-129-098-007.res.spectrum.com) (Read error: Connection reset by peer)
2021-05-12 08:02:05 <lortabac> apparently you can hide them when importing the module and re-export the whole module
2021-05-12 08:02:14 <lortabac> it seems to work
2021-05-12 08:02:41 Guest24024 is now known as chomwitt
2021-05-12 08:03:19 <tomsmeding> indeed
2021-05-12 08:03:36 evanjs joins (~evanjs@075-129-098-007.res.spectrum.com)
2021-05-12 08:05:26 × heatsink quits (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
2021-05-12 08:05:35 ram19890 joins (~ram@49.205.82.36)
2021-05-12 08:07:21 hendursaga joins (~weechat@gateway/tor-sasl/hendursaga)
2021-05-12 08:10:21 × hendursa1 quits (~weechat@gateway/tor-sasl/hendursaga) (Ping timeout: 240 seconds)
2021-05-12 08:10:30 m0rphism joins (~m0rphism@HSI-KBW-085-216-104-059.hsi.kabelbw.de)
2021-05-12 08:10:52 × hendursaga quits (~weechat@gateway/tor-sasl/hendursaga) (Remote host closed the connection)
2021-05-12 08:10:58 jakalx parts (~jakalx@base.jakalx.net) ("Error from remote client")
2021-05-12 08:11:14 hendursaga joins (~weechat@gateway/tor-sasl/hendursaga)
2021-05-12 08:14:16 kritzefitz joins (~kritzefit@p200300ecdf3c5b009ca7d9f9eb7bbe17.dip0.t-ipconnect.de)
2021-05-12 08:15:37 pmj joins (~pmj@p4fe156fa.dip0.t-ipconnect.de)
2021-05-12 08:16:33 DarkiJah joins (~Android@213.237.86.22)
2021-05-12 08:16:34 × DarkiJah quits (~Android@213.237.86.22) (Excess Flood)
2021-05-12 08:17:25 × sphalerite quits (~sphalerit@NixOS/user/lheckemann) (Quit: WeeChat 2.9)
2021-05-12 08:17:41 jakalx joins (~jakalx@base.jakalx.net)
2021-05-12 08:18:23 sphalerite joins (~sphalerit@NixOS/user/lheckemann)
2021-05-12 08:21:18 <merijn> ain issue with that is that haddocks will be shit
2021-05-12 08:21:34 <merijn> Better off explicitly listing identifiers
2021-05-12 08:21:59 <lortabac> merijn: good point
2021-05-12 08:23:22 thunderrd joins (~thunderrd@183.182.115.120)
2021-05-12 08:23:23 DarkiJah joins (~Android@213.237.86.22)
2021-05-12 08:23:23 × DarkiJah quits (~Android@213.237.86.22) (Excess Flood)
2021-05-12 08:23:47 ggVGc joins (~ggVGc@a.lowtech.earth)
2021-05-12 08:23:53 × whataday quits (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection)
2021-05-12 08:24:26 × undvrainbowvita8 quits (~egp_@128-71-13-3.broadband.corbina.ru) (Ping timeout: 240 seconds)
2021-05-12 08:25:01 whataday joins (~xxx@2400:8902::f03c:92ff:fe60:98d8)
2021-05-12 08:25:24 × kritzefitz quits (~kritzefit@p200300ecdf3c5b009ca7d9f9eb7bbe17.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
2021-05-12 08:27:11 × plutoniix quits (~q@ppp-171-97-98-58.revip8.asianet.co.th) (Ping timeout: 240 seconds)
2021-05-12 08:28:02 ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-05-12 08:28:24 ddellaco_ joins (~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-05-12 08:29:25 undvrainbowvita8 joins (~egp_@128-71-13-3.broadband.corbina.ru)
2021-05-12 08:29:30 oxide joins (~lambda@unaffiliated/mclaren)
2021-05-12 08:29:32 DarkiJah joins (~Android@213.237.86.22)
2021-05-12 08:32:26 × ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 240 seconds)
2021-05-12 08:32:52 × ddellaco_ quits (~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 252 seconds)
2021-05-12 08:35:08 heatsink joins (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-05-12 08:36:24 chris__ joins (~chris@81.96.113.213)
2021-05-12 08:36:52 × nut quits (~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (Ping timeout: 252 seconds)
2021-05-12 08:36:55 × joeyh quits (joeyh@kitenet.net) (Quit: ZNC 1.8.1+deb1 - https://znc.in)
2021-05-12 08:37:05 joeyh joins (joeyh@kitenet.net)
2021-05-12 08:37:43 × undvrainbowvita8 quits (~egp_@128-71-13-3.broadband.corbina.ru) (Ping timeout: 265 seconds)
2021-05-12 08:38:34 LKoen joins (~LKoen@5.166.9.109.rev.sfr.net)
2021-05-12 08:38:35 kritzefitz joins (~kritzefit@2003:5b:203b:200::10:49)
2021-05-12 08:40:14 × heatsink quits (~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 268 seconds)
2021-05-12 08:41:41 × darjeeling_ quits (~darjeelin@122.245.120.162) (Ping timeout: 240 seconds)
2021-05-12 08:41:47 × rdivyanshu quits (uid322626@gateway/web/irccloud.com/x-hkzwbomfxvfomdtz) (Quit: Connection closed for inactivity)
2021-05-12 08:42:53 × xff0x quits (~xff0x@2001:1a81:523e:f300:70f:5849:6a09:4e61) (Ping timeout: 250 seconds)

All times are in UTC.