mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
add elm-get to haskell packages
This commit is contained in:
parent
f646d1f6ec
commit
9868f13799
24
pkgs/development/compilers/elm/elm-get.nix
Normal file
24
pkgs/development/compilers/elm/elm-get.nix
Normal file
@ -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 = "http://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;
|
||||
};
|
||||
})
|
@ -749,6 +749,10 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user