Skip to content
Snippets Groups Projects
Commit 923bea4b authored by Max Tomago's avatar Max Tomago
Browse files

list-t: init at 1.0.5.3

parent 2234f938
Branches
Tags
No related merge requests found
...@@ -178,6 +178,7 @@ in [ callHackage "PyF" "0.11.0.0" ...@@ -178,6 +178,7 @@ in [ callHackage "PyF" "0.11.0.0"
"https://github.com/milloni/moo" "https://github.com/milloni/moo"
(Some "20e4c6ee880e7d62b18b995750063dd7349a3f8e") (Some "20e4c6ee880e7d62b18b995750063dd7349a3f8e")
(None Text) (None Text)
, callHackage "list-t" "1.0.5.3"
, callCardanoLedger "non-integral" "libs/non-integral" , callCardanoLedger "non-integral" "libs/non-integral"
, callCabal2nix , callCabal2nix
"nothunks" "nothunks"
......
...@@ -101,6 +101,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -101,6 +101,8 @@ final: prev: with pkgs.haskell.lib; {
inline-r = prev.callPackage (./pkgs/inline-r.nix) { }; inline-r = prev.callPackage (./pkgs/inline-r.nix) { };
list-t = prev.callPackage (./pkgs/list-t.nix) { };
measures = prev.callPackage (./pkgs/measures.nix) { }; measures = prev.callPackage (./pkgs/measures.nix) { };
moo = prev.callPackage (./pkgs/moo.nix) { }; moo = prev.callPackage (./pkgs/moo.nix) { };
......
{ mkDerivation
, base
, base-prelude
, foldl
, HTF
, lib
, logict
, mmorph
, monad-control
, mtl
, mtl-prelude
, semigroups
, transformers
, transformers-base
}:
mkDerivation {
pname = "list-t";
version = "1.0.5.3";
sha256 = "adf3d36457d4c505bd7c9d5f81760145102d10d66503240fe24c3882947b6e48";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
foldl
logict
mmorph
monad-control
mtl
semigroups
transformers
transformers-base
];
testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/nikita-volkov/list-t";
description = "ListT done right";
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