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

rere: init at 0.2

parent 14fd0e17
Branches
Tags
No related merge requests found
...@@ -432,6 +432,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -432,6 +432,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "resource-pool" "0.3.1.0" , callHackage "resource-pool" "0.3.1.0"
, callHackage "resourcet" "1.3.0" , callHackage "resourcet" "1.3.0"
, callHackage "rerebase" "1.15.0.3" , callHackage "rerebase" "1.15.0.3"
, callHackage "rere" "0.2"
, callHackage "relude" "1.1.0.0" , callHackage "relude" "1.1.0.0"
, callHackage "retry" "0.9.3.0" , callHackage "retry" "0.9.3.0"
, callHackage "rope-utf16-splay" "0.4.0.0" , callHackage "rope-utf16-splay" "0.4.0.0"
......
...@@ -565,6 +565,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -565,6 +565,8 @@ final: prev: with pkgs.haskell.lib; {
relude = prev.callPackage (./pkgs/relude.nix) { }; relude = prev.callPackage (./pkgs/relude.nix) { };
rere = prev.callPackage (./pkgs/rere.nix) { };
rerebase = prev.callPackage (./pkgs/rerebase.nix) { }; rerebase = prev.callPackage (./pkgs/rerebase.nix) { };
resource-pool = prev.callPackage (./pkgs/resource-pool.nix) { }; resource-pool = prev.callPackage (./pkgs/resource-pool.nix) { };
......
{ mkDerivation
, aeson
, attoparsec
, base
, bytestring
, clock
, containers
, criterion
, derp
, fin
, lib
, parsec
, QuickCheck
, quickcheck-instances
, tasty
, tasty-quickcheck
, transformers
, vec
}:
mkDerivation {
pname = "rere";
version = "0.2";
sha256 = "99fa400d5f3392fae6037c65e9cbf09cee837f753181f4fbf5f7f2ca20750969";
revision = "2";
editedCabalFile = "1gbf04s2rjs8kn1g28kd5qm8rvq6fdna88l1plw67q19v9rkxidp";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
fin
parsec
QuickCheck
transformers
vec
];
testHaskellDepends = [
base
containers
QuickCheck
quickcheck-instances
tasty
tasty-quickcheck
];
benchmarkHaskellDepends = [
aeson
attoparsec
base
bytestring
clock
containers
criterion
derp
fin
parsec
vec
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Regular-expressions extended with fixpoints for context-free powers";
license = lib.licenses.bsd3;
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