Skip to content
Closed

Elm get #4814

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions pkgs/development/compilers/elm/elm-get.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, aeson, aesonPretty, ansiWlPprint, binary, Elm, filepath
, HTTP, httpClient, httpClientTls, httpTypes, mtl, network
, optparseApplicative, vector
}:

cabal.mkDerivation (self: {
pname = "elm-get";
version = "0.1.3";
sha256 = "1did7vjd1h2kh5alndd2b63zi8b1m9hf6k1k75yxwvw6f6mz5i4q";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson aesonPretty ansiWlPprint binary Elm filepath HTTP httpClient
httpClientTls httpTypes mtl network optparseApplicative vector
];
meta = {
homepage = "https://github.com/elm-lang/elm-get";
description = "Tool for sharing and using Elm libraries";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})
28 changes: 28 additions & 0 deletions pkgs/development/compilers/elm/elm-repl.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, bytestringTrie, cmdargs, Elm, filepath, haskeline, HUnit
, mtl, parsec, QuickCheck, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2
}:

cabal.mkDerivation (self: {
pname = "elm-repl";
version = "0.3";
sha256 = "10a4a2ybg5dlshpklnisb957lknb0w8s3ppaq5p5y6ylqik8ak0a";
isLibrary = false;
isExecutable = true;
buildDepends = [
bytestringTrie cmdargs Elm filepath haskeline mtl parsec
];
testDepends = [
bytestringTrie cmdargs Elm filepath haskeline HUnit mtl parsec
QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2
];
meta = {
homepage = "https://github.com/elm-lang/elm-repl";
description = "a REPL for Elm";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})
6 changes: 6 additions & 0 deletions pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,12 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in

elmServer = callPackage ../development/compilers/elm/elm-server.nix {};

elmRepl = callPackage ../development/compilers/elm/elm-repl.nix {};

elmGet = callPackage ../development/compilers/elm/elm-get.nix {
optparseApplicative = self.optparseApplicative_0_10_0;
};

emailValidate = callPackage ../development/libraries/haskell/email-validate {};

enclosedExceptions = callPackage ../development/libraries/haskell/enclosed-exceptions {};
Expand Down