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

mono-traversable: init at 1.0.15.3

parent 20b43409
Branches
Tags
No related merge requests found
...@@ -346,6 +346,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -346,6 +346,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "monad-time" "0.4.0.0" , callHackage "monad-time" "0.4.0.0"
, callHackage "monad-par" "0.3.5" , callHackage "monad-par" "0.3.5"
, callHackage "monoid-subclasses" "1.1.3" , callHackage "monoid-subclasses" "1.1.3"
, callHackage "mono-traversable" "1.0.15.3"
, callHackage "network-byte-order" "0.1.6" , callHackage "network-byte-order" "0.1.6"
, callHackage "network-uri" "2.6.4.1" , callHackage "network-uri" "2.6.4.1"
, callHackage "newtype-generics" "0.6.2" , callHackage "newtype-generics" "0.6.2"
......
...@@ -419,6 +419,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -419,6 +419,8 @@ final: prev: with pkgs.haskell.lib; {
monad-time = prev.callPackage (./pkgs/monad-time.nix) { }; monad-time = prev.callPackage (./pkgs/monad-time.nix) { };
mono-traversable = prev.callPackage (./pkgs/mono-traversable.nix) { };
monoid-subclasses = prev.callPackage (./pkgs/monoid-subclasses.nix) { }; monoid-subclasses = prev.callPackage (./pkgs/monoid-subclasses.nix) { };
net-mqtt = prev.callPackage (./pkgs/net-mqtt.nix) { }; net-mqtt = prev.callPackage (./pkgs/net-mqtt.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, foldl
, gauge
, hashable
, hspec
, HUnit
, lib
, mwc-random
, QuickCheck
, split
, text
, transformers
, unordered-containers
, vector
, vector-algorithms
}:
mkDerivation {
pname = "mono-traversable";
version = "1.0.15.3";
sha256 = "98b220f3313d74227a4249210c8818e839678343e62b3ebb1b8c867cf2b974b7";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
containers
hashable
split
text
transformers
unordered-containers
vector
vector-algorithms
];
testHaskellDepends = [
base
bytestring
containers
foldl
hspec
HUnit
QuickCheck
text
transformers
unordered-containers
vector
];
benchmarkHaskellDepends = [ base gauge mwc-random vector ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/snoyberg/mono-traversable#readme";
description = "Type classes for mapping, folding, and traversing monomorphic containers";
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