lol
1{ mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary
2, bytestring, containers, directory, edit-distance, fetchgit
3, file-embed, filepath, ghc-prim, haskeline, HTTP, http-client
4, http-client-tls, http-types, language-glsl, logict, mtl, network
5, parsec, process, raw-strings-qq, scientific, SHA, snap-core
6, snap-server, stdenv, template-haskell, text, time
7, unordered-containers, utf8-string, vector, zip-archive
8}:
9mkDerivation {
10 pname = "elm";
11 version = "0.19.0";
12 src = fetchgit {
13 url = "https://github.com/elm/compiler";
14 sha256 = "0s93z9vr0vp5w894ghc5s34nsq09sg1msf59zfiba87sid5vgjqy";
15 rev = "32059a289d27e303fa1665e9ada0a52eb688f302";
16 };
17 isLibrary = false;
18 isExecutable = true;
19 executableHaskellDepends = [
20 ansi-terminal ansi-wl-pprint base binary bytestring containers
21 directory edit-distance file-embed filepath ghc-prim haskeline HTTP
22 http-client http-client-tls http-types language-glsl logict mtl
23 network parsec process raw-strings-qq scientific SHA snap-core
24 snap-server template-haskell text time unordered-containers
25 utf8-string vector zip-archive
26 ];
27 homepage = "http://elm-lang.org";
28 description = "The `elm` command line interface";
29 license = stdenv.lib.licenses.bsd3;
30}