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

adjunctions: init at 4.4.2

parent ec25e344
Branches
Tags
No related merge requests found
...@@ -70,6 +70,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -70,6 +70,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "OneTuple" "0.3.1" , callHackage "OneTuple" "0.3.1"
, callHackage "OpenGLRaw" "3.3.4.1" , callHackage "OpenGLRaw" "3.3.4.1"
, callHackage "PyF" "0.11.1.0" , callHackage "PyF" "0.11.1.0"
, callHackage "adjunctions" "4.4.2"
, callHackage "aeson" "2.1.0.0" , callHackage "aeson" "2.1.0.0"
, callHackage "aeson-pretty" "0.8.9" , callHackage "aeson-pretty" "0.8.9"
, callHackage "aeson-yaml" "1.1.0.1" , callHackage "aeson-yaml" "1.1.0.1"
......
...@@ -23,6 +23,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -23,6 +23,8 @@ final: prev: with pkgs.haskell.lib; {
PyF = prev.callPackage (./pkgs/PyF.nix) { }; PyF = prev.callPackage (./pkgs/PyF.nix) { };
adjunctions = prev.callPackage (./pkgs/adjunctions.nix) { };
aeson = prev.callPackage (./pkgs/aeson.nix) { }; aeson = prev.callPackage (./pkgs/aeson.nix) { };
aeson-pretty = prev.callPackage (./pkgs/aeson-pretty.nix) { }; aeson-pretty = prev.callPackage (./pkgs/aeson-pretty.nix) { };
......
{ mkDerivation
, array
, base
, comonad
, containers
, contravariant
, distributive
, free
, generic-deriving
, hspec
, hspec-discover
, lib
, mtl
, profunctors
, semigroupoids
, semigroups
, tagged
, transformers
, transformers-compat
, void
}:
mkDerivation {
pname = "adjunctions";
version = "4.4.2";
sha256 = "147b5f8db810bca0ea8952ef974982ffc447cecd21f01e1ea1121df77e276518";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
comonad
containers
contravariant
distributive
free
mtl
profunctors
semigroupoids
semigroups
tagged
transformers
transformers-compat
void
];
testHaskellDepends = [ base distributive generic-deriving hspec ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/adjunctions/";
description = "Adjunctions and representable functors";
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