Merge pull request #4812 from krgn/elm-repl

add elm-preprepl to package list

+58
+24
pkgs/development/compilers/elm/elm-get.nix
··· 1 + # This file was auto-generated by cabal2nix. Please do NOT edit manually! 2 + 3 + { cabal, aeson, aesonPretty, ansiWlPprint, binary, Elm, filepath 4 + , HTTP, httpClient, httpClientTls, httpTypes, mtl, network 5 + , optparseApplicative, vector 6 + }: 7 + 8 + cabal.mkDerivation (self: { 9 + pname = "elm-get"; 10 + version = "0.1.3"; 11 + sha256 = "1did7vjd1h2kh5alndd2b63zi8b1m9hf6k1k75yxwvw6f6mz5i4q"; 12 + isLibrary = true; 13 + isExecutable = true; 14 + buildDepends = [ 15 + aeson aesonPretty ansiWlPprint binary Elm filepath HTTP httpClient 16 + httpClientTls httpTypes mtl network optparseApplicative vector 17 + ]; 18 + meta = { 19 + homepage = "http://github.com/elm-lang/elm-get"; 20 + description = "Tool for sharing and using Elm libraries"; 21 + license = self.stdenv.lib.licenses.bsd3; 22 + platforms = self.ghc.meta.platforms; 23 + }; 24 + })
+28
pkgs/development/compilers/elm/elm-repl.nix
··· 1 + # This file was auto-generated by cabal2nix. Please do NOT edit manually! 2 + 3 + { cabal, bytestringTrie, cmdargs, Elm, filepath, haskeline, HUnit 4 + , mtl, parsec, QuickCheck, testFramework, testFrameworkHunit 5 + , testFrameworkQuickcheck2 6 + }: 7 + 8 + cabal.mkDerivation (self: { 9 + pname = "elm-repl"; 10 + version = "0.3"; 11 + sha256 = "10a4a2ybg5dlshpklnisb957lknb0w8s3ppaq5p5y6ylqik8ak0a"; 12 + isLibrary = false; 13 + isExecutable = true; 14 + buildDepends = [ 15 + bytestringTrie cmdargs Elm filepath haskeline mtl parsec 16 + ]; 17 + testDepends = [ 18 + bytestringTrie cmdargs Elm filepath haskeline HUnit mtl parsec 19 + QuickCheck testFramework testFrameworkHunit 20 + testFrameworkQuickcheck2 21 + ]; 22 + meta = { 23 + homepage = "https://github.com/elm-lang/elm-repl"; 24 + description = "a REPL for Elm"; 25 + license = self.stdenv.lib.licenses.bsd3; 26 + platforms = self.ghc.meta.platforms; 27 + }; 28 + })
+6
pkgs/top-level/haskell-packages.nix
··· 752 752 753 753 elmServer = callPackage ../development/compilers/elm/elm-server.nix {}; 754 754 755 + elmRepl = callPackage ../development/compilers/elm/elm-repl.nix {}; 756 + 757 + elmGet = callPackage ../development/compilers/elm/elm-get.nix { 758 + optparseApplicative = self.optparseApplicative_0_10_0; 759 + }; 760 + 755 761 emailValidate = callPackage ../development/libraries/haskell/email-validate {}; 756 762 757 763 enclosedExceptions = callPackage ../development/libraries/haskell/enclosed-exceptions {};