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

free: init at 5.1.9

parent d29c9984
Branches
Tags
No related merge requests found
...@@ -199,6 +199,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -199,6 +199,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "fcf-containers" "0.7.1" , callHackage "fcf-containers" "0.7.1"
, callHackage "finite-field" "0.10.0" , callHackage "finite-field" "0.10.0"
, callHackage "first-class-families" "0.8.0.1" , callHackage "first-class-families" "0.8.0.1"
, callHackage "free" "5.1.9"
, callHackage "fsnotify" "0.4.1.0" , callHackage "fsnotify" "0.4.1.0"
, callHackage "foldl" "1.4.12" , callHackage "foldl" "1.4.12"
, callHackage "foundation" "0.0.29" , callHackage "foundation" "0.0.29"
......
...@@ -205,6 +205,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -205,6 +205,8 @@ final: prev: with pkgs.haskell.lib; {
foundation = prev.callPackage (./pkgs/foundation.nix) { }; foundation = prev.callPackage (./pkgs/foundation.nix) { };
free = prev.callPackage (./pkgs/free.nix) { };
fsnotify = prev.callPackage (./pkgs/fsnotify.nix) { }; fsnotify = prev.callPackage (./pkgs/fsnotify.nix) { };
fuzzy-time = prev.callPackage (./pkgs/fuzzy-time.nix) { }; fuzzy-time = prev.callPackage (./pkgs/fuzzy-time.nix) { };
......
{ mkDerivation
, base
, comonad
, containers
, distributive
, exceptions
, indexed-traversable
, lib
, mtl
, profunctors
, semigroupoids
, template-haskell
, th-abstraction
, transformers
, transformers-base
}:
mkDerivation {
pname = "free";
version = "5.1.9";
sha256 = "2e751309408550ebccc2708170ec8473eac1e35b4bc1016bee0776ac938e9fee";
revision = "1";
editedCabalFile = "133nycxnzy7sgp2vib8hpp2jgzm8pxp31ljf7b4v91jn1gqg3kpl";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
comonad
containers
distributive
exceptions
indexed-traversable
mtl
profunctors
semigroupoids
template-haskell
th-abstraction
transformers
transformers-base
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/free/";
description = "Monads for free";
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