Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-07 Thread Rehno Lindeque
> Looks very clever, not something I had ever looked into before. Do you > have to run NixOS or is nix something that you can run on top of any > distribution? (I'm a long time Debian user). > Nix itself is just a cross-platform package manager, independent of the operating system NixOS.

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-07 Thread 'Rupert Smith' via Elm Discuss
On Thursday, April 6, 2017 at 6:34:09 PM UTC+1, Rehno Lindeque wrote: > > I'm a little surprised that more people haven't tried nix for pinning > their Elm tools... E.g. pop a shell.nix file like this into your project > root and you'll have it pinned to elm 0.18 indefinitely: > Looks very

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-06 Thread Rehno Lindeque
I'm a little surprised that more people haven't tried nix for pinning their Elm tools... E.g. pop a shell.nix file like this into your project root and you'll have it pinned to elm 0.18 indefinitely: { bootpkgs ? (import {}).pkgs }: let pkgs = import (bootpkgs.fetchFromGitHub {

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-06 Thread Nicholas Hollon
> > There needs to be a better advertising of the ecosystem both in terms of > tools and in terms of packages. > I agree with this, but the effort needs to start with the library authors. As far as I can tell (searching this list, Google, & r/elm), Erik is the only one of these authors who

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-06 Thread Peter Damoc
On Thu, Apr 6, 2017 at 3:43 PM, Eirik Sletteberg wrote: > None of these tools are mentioned in the Elm documentation. It only points > to installers and the npm module. Exactly my point. There needs to be a better advertising of the ecosystem both in terms of tools

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-06 Thread Eirik Sletteberg
None of these tools are mentioned in the Elm documentation. It only points to installers and the npm module. -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-06 Thread Peter Damoc
On Thu, Apr 6, 2017 at 2:00 PM, Richard Wood wrote: > Very healthy having competing options in the ecosystem > :) > > No, this is against Elm philosophy as I understand it. Elm aims to have one, excellent option rather than a plethora of slightly different libraries/tools.

Re: [elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-06 Thread Richard Wood
Very healthy having competing options in the ecosystem :) -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+unsubscr...@googlegroups.com. For more

[elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-05 Thread John Kelly
Checkout out https://github.com/rtfeldman/elm-use as well. I believe it serves a similar purpose. On Wednesday, April 5, 2017 at 7:33:45 AM UTC-7, Eirik Sletteberg wrote: > > https://github.com/eirslett/elmvm > > This is a simple utility inspired by nvm (Node Version Manager). > It lets you

[elm-discuss] Re: elmvm (Elm Version Manager)

2017-04-05 Thread Rex van der Spuy
Thanks so much, this is really useful! I've have quite a few projects that are in different versions of Elm, and migrating them all en-masse to the latest version is always a chore. It will be great to go back and an compile them in 0.17 and 0.16 again! :) -- You received this message because