fb4a6119b6
This includes updates to elm -compiler, -make, -package and -reactor. -repl's test suite currently breaks. The build for elm-reactor could be more concise, but it's clean. The final build step for elm-reactor ultimately relies on elm-package downloading some libraries, so anything radically better would probably need nix to step in and somehow emulate elm-package. That would take more knowledge about elm & nix than I have...
27 lines
901 B
Nix
27 lines
901 B
Nix
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
|
|
|
{ cabal, aeson, aesonPretty, ansiWlPprint, binary, elmCompiler
|
|
, filepath, HTTP, httpClient, httpClientTls, httpTypes, mtl
|
|
, network, optparseApplicative, text, time, unorderedContainers
|
|
, vector, zipArchive
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "elm-package";
|
|
version = "0.4";
|
|
sha256 = "0vsq87imyvs1sa2n4z41b6qswy2cknxsg4prhwc9r7lvyljkmn03";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
aeson aesonPretty ansiWlPprint binary elmCompiler filepath HTTP
|
|
httpClient httpClientTls httpTypes mtl network optparseApplicative
|
|
text time unorderedContainers vector zipArchive
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/elm-lang/elm-package";
|
|
description = "Package manager for Elm libraries";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|