1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-23 09:55:43 +03:00
free-category/nix/exceptions-0.8.3.nix
Marcin Szamotulski 5b2cc8e2b6
Build with ghc802
2018-10-22 23:46:22 +02:00

22 lines
790 B
Nix

{ mkDerivation, base, mtl, QuickCheck, stdenv, stm
, template-haskell, test-framework, test-framework-quickcheck2
, transformers, transformers-compat
}:
mkDerivation {
pname = "exceptions";
version = "0.8.3";
sha256 = "4d6ad97e8e3d5dc6ce9ae68a469dc2fd3f66e9d312bc6faa7ab162eddcef87be";
revision = "5";
editedCabalFile = "1kfgp41i6mfz9gjczp3flvqxfhnznd81rwldv8j05807n6mnqqii";
libraryHaskellDepends = [
base mtl stm template-haskell transformers transformers-compat
];
testHaskellDepends = [
base mtl QuickCheck stm template-haskell test-framework
test-framework-quickcheck2 transformers transformers-compat
];
homepage = "http://github.com/ekmett/exceptions/";
description = "Extensible optionally-pure exceptions";
license = stdenv.lib.licenses.bsd3;
}