-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e44b46
commit db11c83
Showing
7 changed files
with
38 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary | ||
, bytestring, containers, directory, edit-distance, fetchgit | ||
, file-embed, filepath, ghc-prim, haskeline, HTTP, http-client | ||
, http-client-tls, http-types, language-glsl, logict, mtl, network | ||
, parsec, process, raw-strings-qq, scientific, SHA, snap-core | ||
, snap-server, stdenv, template-haskell, text, time | ||
, unordered-containers, utf8-string, vector, zip-archive | ||
}: | ||
mkDerivation { | ||
pname = "elm"; | ||
version = "0.19.0"; | ||
src = fetchgit { | ||
url = "https://github.com/elm/compiler"; | ||
sha256 = "0s93z9vr0vp5w894ghc5s34nsq09sg1msf59zfiba87sid5vgjqy"; | ||
rev = "32059a289d27e303fa1665e9ada0a52eb688f302"; | ||
}; | ||
isLibrary = false; | ||
isExecutable = true; | ||
executableHaskellDepends = [ | ||
ansi-terminal ansi-wl-pprint base binary bytestring containers | ||
directory edit-distance file-embed filepath ghc-prim haskeline HTTP | ||
http-client http-client-tls http-types language-glsl logict mtl | ||
network parsec process raw-strings-qq scientific SHA snap-core | ||
snap-server template-haskell text time unordered-containers | ||
utf8-string vector zip-archive | ||
]; | ||
homepage = "http://elm-lang.org"; | ||
description = "The `elm` command line interface"; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |
This file was deleted.
Oops, something went wrong.