mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
add elm-preprepl to package list
This commit is contained in:
parent
cd2cd41c96
commit
f646d1f6ec
28
pkgs/development/compilers/elm/elm-repl.nix
Normal file
28
pkgs/development/compilers/elm/elm-repl.nix
Normal file
@ -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;
|
||||
};
|
||||
})
|
@ -747,6 +747,8 @@ 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 {};
|
||||
|
||||
emailValidate = callPackage ../development/libraries/haskell/email-validate {};
|
||||
|
||||
enclosedExceptions = callPackage ../development/libraries/haskell/enclosed-exceptions {};
|
||||
|
Loading…
Reference in New Issue
Block a user