e55ca0628f
- generic-deriving: updated to version 1.2.1 - ghc-mod: updated to version 1.10.17 - gitit: updated to version 0.10.0.1 - graphviz: updated to version 2999.13.0.3 - hsemail: updated to version 1.7.2 - split: updated to version 0.1.4.3 svn path=/nixpkgs/trunk/; revision=34384
16 lines
451 B
Nix
16 lines
451 B
Nix
{ cabal, mtl, parsec }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hsemail";
|
|
version = "1.7.2";
|
|
sha256 = "1bl017gfyvjvxs9z1fns6sknk1l55905r82i31aqbz9qyaj70gzx";
|
|
buildDepends = [ mtl parsec ];
|
|
meta = {
|
|
homepage = "http://gitorious.org/hsemail";
|
|
description = "Internet Message Parsers";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|