Logs: freenode/#haskell
| 2020-10-14 20:59:26 | × | ahmr88 quits (~ahmr88@cpc85006-haye22-2-0-cust131.17-4.cable.virginm.net) (Remote host closed the connection) |
| 2020-10-14 21:00:01 | × | tobiastom1 quits (~tobiastom@185.104.184.43) () |
| 2020-10-14 21:01:15 | → | christo joins (516071d5@81.96.113.213) |
| 2020-10-14 21:02:31 | × | dhil quits (~dhil@78.156.97.38) (Ping timeout: 246 seconds) |
| 2020-10-14 21:03:45 | → | Patrick24 joins (4881905c@cpe-72-129-144-92.new.res.rr.com) |
| 2020-10-14 21:03:55 | → | hekkaidekapus_ joins (~tchouri@gateway/tor-sasl/hekkaidekapus) |
| 2020-10-14 21:04:49 | <christo> | anyone know if can set cabal build to refer to cabal v1-build? it's so my haskell language server works with a certain project |
| 2020-10-14 21:05:09 | <christo> | this projects only builds with v1- prefix |
| 2020-10-14 21:05:23 | × | hekkaidekapus quits (~tchouri@gateway/tor-sasl/hekkaidekapus) (Ping timeout: 240 seconds) |
| 2020-10-14 21:05:25 | <christo> | but haskell language server uses build by default i think |
| 2020-10-14 21:05:34 | <monochrom> | Cannot. But you could either use an older version, or write a shell script to do the translation. |
| 2020-10-14 21:05:56 | <monochrom> | To be sure, it may be a bad idea to go back to an older version. :) |
| 2020-10-14 21:06:06 | <christo> | i tried using cabal 2.4 |
| 2020-10-14 21:06:10 | → | snakemas1 joins (~snakemast@213.100.206.23) |
| 2020-10-14 21:06:13 | <christo> | and it still had issues with that |
| 2020-10-14 21:06:45 | <christo> | in that case is there a way to tell haskell language server to use v1- instead? |
| 2020-10-14 21:06:54 | <monochrom> | It is very strange that v2- doesn't build that project. Maybe better to debug that instead. |
| 2020-10-14 21:06:59 | <Uniaika> | why is that a problem, christo? |
| 2020-10-14 21:07:05 | <Uniaika> | why do you need v1-? |
| 2020-10-14 21:07:22 | <monochrom> | Because v1- won't be around forever. |
| 2020-10-14 21:07:32 | <christo> | https://github.com/Euterpea/Euterpea2 |
| 2020-10-14 21:07:36 | <monochrom> | To be sure, we're talking about 5 years into the future. |
| 2020-10-14 21:07:36 | <christo> | is the project |
| 2020-10-14 21:07:58 | <christo> | and i can built it with v1-build |
| 2020-10-14 21:08:30 | <christo> | but haskell language server in vs code uses default "cabal build" to do it's ide features |
| 2020-10-14 21:08:46 | <christo> | i want to use the project with ide support/features working |
| 2020-10-14 21:09:17 | × | GyroW_ quits (~GyroW@unaffiliated/gyrow) (Remote host closed the connection) |
| 2020-10-14 21:09:37 | → | GyroW joins (~GyroW@ptr-48ujrfd1ztq5fjywfw3.18120a2.ip6.access.telenet.be) |
| 2020-10-14 21:09:37 | × | GyroW quits (~GyroW@ptr-48ujrfd1ztq5fjywfw3.18120a2.ip6.access.telenet.be) (Changing host) |
| 2020-10-14 21:09:37 | → | GyroW joins (~GyroW@unaffiliated/gyrow) |
| 2020-10-14 21:10:23 | × | Unhammer quits (~Unhammer@gateway/tor-sasl/unhammer) (Ping timeout: 240 seconds) |
| 2020-10-14 21:10:53 | × | snakemas1 quits (~snakemast@213.100.206.23) (Ping timeout: 260 seconds) |
| 2020-10-14 21:11:55 | <Patrick24> | Is anyone available to help me out with this: https://stackoverflow.com/questions/64360903/trouble-with-xmonad-handleeventhook |
| 2020-10-14 21:11:56 | → | proofofme joins (~proofofme@184-96-74-65.hlrn.qwest.net) |
| 2020-10-14 21:12:03 | × | ashbreeze quits (~mark@72-161-49-127.dyn.centurytel.net) (Ping timeout: 260 seconds) |
| 2020-10-14 21:12:13 | <monochrom> | Ah, custom Setup.hs. Now how do I convince it to use a modern Cabal lib? |
| 2020-10-14 21:12:20 | → | ashbreeze joins (~mark@184-157-32-8.dyn.centurytel.net) |
| 2020-10-14 21:13:24 | <monochrom> | Let's give --allow-newer a try. |
| 2020-10-14 21:13:43 | × | jb55 quits (~jb55@gateway/tor-sasl/jb55) (Ping timeout: 240 seconds) |
| 2020-10-14 21:14:16 | <dcoutts> | monochrom: using the "custom-setup" section |
| 2020-10-14 21:14:16 | <dcoutts> | https://cabal.readthedocs.io/en/3.4/cabal-package.html#custom-setup-scripts |
| 2020-10-14 21:14:17 | × | Ariakenom_ quits (~Ariakenom@h-82-196-111-216.NA.cust.bahnhof.se) (Quit: Leaving) |
| 2020-10-14 21:14:34 | <dcoutts> | and constraining the Cabal version in setup-depends |
| 2020-10-14 21:14:51 | <monochrom> | Ah nice. Thanks. This is for christo. |
| 2020-10-14 21:14:53 | <Uniaika> | Patrick24: any reason you're not asking on the #Xmonad channel? |
| 2020-10-14 21:15:18 | <monochrom> | Also, my blunt --allow-newer got passed that barrier. (But now I need to install asound-dev or something) |
| 2020-10-14 21:15:40 | → | Unhammer joins (~Unhammer@gateway/tor-sasl/unhammer) |
| 2020-10-14 21:15:48 | → | dhil joins (~dhil@195.213.192.122) |
| 2020-10-14 21:15:57 | × | AlterEgo- quits (~ladew@124-198-158-163.dynamic.caiway.nl) (Quit: Leaving) |
| 2020-10-14 21:16:28 | <monochrom> | libasound-dev |
| 2020-10-14 21:17:40 | → | jb55 joins (~jb55@gateway/tor-sasl/jb55) |
| 2020-10-14 21:20:46 | → | ahmr88 joins (~ahmr88@cpc85006-haye22-2-0-cust131.17-4.cable.virginm.net) |
| 2020-10-14 21:21:02 | <proofofme> | I wish cabal operated like yarn or npm |
| 2020-10-14 21:22:06 | → | ermau joins (~ermau@s91904426.blix.com) |
| 2020-10-14 21:22:30 | <hpc> | each package can only have a single installed version? |
| 2020-10-14 21:22:52 | × | jlamothe quits (~jlamothe@dev.jlamothe.net) (Quit: leaving) |
| 2020-10-14 21:23:13 | <proofofme> | well, `cabal install` doesn't add to the cabal file ... and it creates a dependency nightmare, from what I found out the hard way the last few days |
| 2020-10-14 21:23:47 | <hpc> | ah |
| 2020-10-14 21:24:55 | <hpc> | rpm has the same issue, it's pretty trivial to create an rpm that doesn't have a declared dependency it's supposed to |
| 2020-10-14 21:25:00 | <christo> | monochrom dcoutts did u guys figure it out? |
| 2020-10-14 21:25:09 | → | fendor joins (~fendor@91.141.0.198.wireless.dyn.drei.com) |
| 2020-10-14 21:25:15 | → | kori joins (~kori@2804:14c:85a3:9105::1000) |
| 2020-10-14 21:25:15 | × | kori quits (~kori@2804:14c:85a3:9105::1000) (Changing host) |
| 2020-10-14 21:25:15 | → | kori joins (~kori@arrowheads/kori) |
| 2020-10-14 21:25:32 | <monochrom> | Yes. Final testing. |
| 2020-10-14 21:25:37 | → | Thompson joins (~Thompson@2603-6000-9945-c66d-0000-0000-0000-1000.res6.spectrum.com) |
| 2020-10-14 21:25:51 | <monochrom> | @paste |
| 2020-10-14 21:25:51 | <lambdabot> | A pastebin: https://paste.debian.net/ |
| 2020-10-14 21:25:55 | <monochrom> | err |
| 2020-10-14 21:25:57 | <monochrom> | @where paste |
| 2020-10-14 21:25:57 | <lambdabot> | Help us help you: please paste full code, input and/or output at eg https://paste.tomsmeding.com |
| 2020-10-14 21:26:57 | <monochrom> | And pasting patched *.cabal file |
| 2020-10-14 21:27:23 | <christo> | brb |
| 2020-10-14 21:27:47 | × | seanparsons quits (~sean@cpc145088-gill21-2-0-cust281.20-1.cable.virginm.net) (Quit: ZNC 1.7.5 - https://znc.in) |
| 2020-10-14 21:28:32 | × | dansho quits (~dansho@ip68-108-167-185.lv.lv.cox.net) (Quit: Leaving) |
| 2020-10-14 21:28:44 | → | wroathe joins (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) |
| 2020-10-14 21:29:24 | → | seanparsons joins (~sean@cpc145088-gill21-2-0-cust281.20-1.cable.virginm.net) |
| 2020-10-14 21:29:40 | <monochrom> | christo: https://paste.tomsmeding.com/bLH1voGn |
| 2020-10-14 21:30:43 | × | jb55 quits (~jb55@gateway/tor-sasl/jb55) (Ping timeout: 240 seconds) |
| 2020-10-14 21:33:28 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 256 seconds) |
| 2020-10-14 21:36:32 | × | oisdk quits (~oisdk@2001:bb6:3329:d100:2427:ffab:82d7:d76a) (Quit: oisdk) |
| 2020-10-14 21:37:00 | × | conal quits (~conal@64.71.133.70) (Quit: Computer has gone to sleep.) |
| 2020-10-14 21:38:00 | <christo> | monochrom just on a call will check it out in a mo |
| 2020-10-14 21:40:12 | → | jalumar joins (uid392211@gateway/web/irccloud.com/x-pyjvlyahgokzopwq) |
| 2020-10-14 21:41:16 | → | conal joins (~conal@64.71.133.70) |
| 2020-10-14 21:41:23 | → | jb55 joins (~jb55@gateway/tor-sasl/jb55) |
| 2020-10-14 21:41:44 | → | sjmz joins (~sjmz@host-79-40-14-170.business.telecomitalia.it) |
| 2020-10-14 21:42:06 | → | Colpop4323 joins (~logstash@82-132-239-127.dab.02.net) |
| 2020-10-14 21:42:10 | × | larou quits (5201f2b7@gateway/web/cgi-irc/kiwiirc.com/ip.82.1.242.183) (Quit: Connection closed) |
| 2020-10-14 21:42:30 | → | larou joins (5201f2b7@gateway/web/cgi-irc/kiwiirc.com/ip.82.1.242.183) |
| 2020-10-14 21:43:06 | <proofofme> | I created a new project just to make things cleaner and I am trying to link mysql-haskell. I keep getting an error. I pasted my cabal file and error output to https://pastebin.com/raw/7bu2xSnm |
| 2020-10-14 21:43:31 | ← | sjmz parts (~sjmz@host-79-40-14-170.business.telecomitalia.it) () |
| 2020-10-14 21:45:46 | × | Colpop4323 quits (~logstash@82-132-239-127.dab.02.net) (Read error: Connection reset by peer) |
| 2020-10-14 21:47:19 | <monochrom> | Interesting, I just need an empty custom-setup section, I don't need to write setup-depends. |
| 2020-10-14 21:50:47 | → | _bushido_ joins (~user@185.80.118.78) |
| 2020-10-14 21:54:14 | → | wroathe joins (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) |
| 2020-10-14 21:54:22 | <proofofme> | Do y'all know how to fix the dependency error on https://pastebin.com/raw/7bu2xSnm ? |
| 2020-10-14 21:54:25 | <yushyin> | proofofme: if I read it correctly the memory package is rejecting base>=4.13, you will need <4.13. Maybe you should try an older ghc with base-4.12 |
| 2020-10-14 21:55:18 | <monochrom> | Use --allow-newer again? >:) |
| 2020-10-14 21:55:31 | <monochrom> | can be more refined: --allow-newer=base |
All times are in UTC.