1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-06 04:23:14 +00:00
nixpkgs/pkgs/development/libraries/haskell/mmorph/default.nix

14 lines
339 B
Nix
Raw Normal View History

2013-03-18 10:46:01 +00:00
{ cabal, transformers }:
cabal.mkDerivation (self: {
pname = "mmorph";
version = "1.0.1";
sha256 = "15a4isvxb4my72hzndgfy66792r9fpkn9vnmr2fnv9d9vl058y14";
2013-03-18 10:46:01 +00:00
buildDepends = [ transformers ];
meta = {
description = "Monad morphisms";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})