3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/elm/packages/elm.nix

32 lines
1.2 KiB
Nix
Raw Normal View History

2018-08-21 22:51:59 +01:00
{ mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary
, bytestring, containers, directory, edit-distance, fetchgit
2019-10-21 15:31:02 +01:00
, file-embed, filelock, filepath, ghc-prim, haskeline, HTTP
, http-client, http-client-tls, http-types, language-glsl, mtl
, network, parsec, process, raw-strings-qq, scientific, SHA
, snap-core, snap-server, stdenv, template-haskell, time
2018-08-21 22:51:59 +01:00
, unordered-containers, utf8-string, vector, zip-archive
}:
mkDerivation {
pname = "elm";
2019-10-21 15:31:02 +01:00
version = "0.19.1";
2018-08-21 22:51:59 +01:00
src = fetchgit {
url = "https://github.com/elm/compiler";
2019-10-21 15:31:02 +01:00
sha256 = "1rdg3xp3js9xadclk3cdypkscm5wahgsfmm4ldcw3xswzhw6ri8w";
rev = "c9aefb6230f5e0bda03205ab0499f6e4af924495";
fetchSubmodules = true;
2018-08-21 22:51:59 +01:00
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
ansi-terminal ansi-wl-pprint base binary bytestring containers
2019-10-21 15:31:02 +01:00
directory edit-distance file-embed filelock filepath ghc-prim
haskeline HTTP http-client http-client-tls http-types language-glsl
mtl network parsec process raw-strings-qq scientific SHA snap-core
snap-server template-haskell time unordered-containers utf8-string
vector zip-archive
2018-08-21 22:51:59 +01:00
];
homepage = "https://elm-lang.org";
2018-08-21 22:51:59 +01:00
description = "The `elm` command line interface";
license = stdenv.lib.licenses.bsd3;
}