mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
15 lines
444 B
Nix
15 lines
444 B
Nix
{ cabal, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "monadloc";
|
|
version = "0.7.1";
|
|
sha256 = "1a773nysrsj61ka7bdacb0i7dxlgb1fjz3x5w9c1w1dv7rmhynmj";
|
|
buildDepends = [ transformers ];
|
|
meta = {
|
|
homepage = "http://github.com/pepeiborra/monadloc";
|
|
description = "A class for monads which can keep a monadic call trace";
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|