Skip to content
Snippets Groups Projects
Commit 17fc1d73 authored by Daniel Firth's avatar Daniel Firth
Browse files

repline: init at 0.4.2.0

parent e37bf7a7
Branches
Tags
No related merge requests found
......@@ -529,6 +529,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "regex-posix" "0.96.0.1"
, callHackage "refined" "0.8"
, callHackage "reflection" "2.1.6"
, callHackage "repline" "0.4.2.0"
, callHackage "resolv" "0.1.2.0"
, callHackage "resource-pool" "0.3.1.0"
, callHackage "resourcet" "1.3.0"
......
......@@ -785,6 +785,8 @@ self: with pkgs.haskell.lib; {
relude = self.callPackage (./pkgs/relude.nix) { };
repline = self.callPackage (./pkgs/repline.nix) { };
rere = self.callPackage (./pkgs/rere.nix) { };
rerebase = self.callPackage (./pkgs/rerebase.nix) { };
......
{ mkDerivation
, base
, containers
, exceptions
, haskeline
, lib
, mtl
, process
}:
mkDerivation {
pname = "repline";
version = "0.4.2.0";
sha256 = "6181b3f106b4059eb1c86c4a442083c29335a1d9a3e7cfffecb962ec05b08d5a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
exceptions
haskeline
mtl
process
];
testHaskellDepends = [ base containers mtl process ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/sdiehl/repline";
description = "Haskeline wrapper for GHCi-like REPL interfaces";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment