nixpkgs/pkgs/development/libraries/haskell/hsemail/default.nix
Andres Löh 8676c4c42a Revert "hsemail: updated build instructions with cabal2nix"
This is to fix gitit, hopefully.

svn path=/nixpkgs/trunk/; revision=28184
2011-08-05 22:05:01 +00:00

14 lines
354 B
Nix

{cabal, mtl, parsec}:
cabal.mkDerivation (self : {
pname = "hsemail";
version = "1.6";
sha256 = "a8ba7e8cfb9213bb2ee61166bc8352e4353560d06f418a0c729aeb1d50b3a1fd";
propagatedBuildInputs = [mtl parsec];
meta = {
description = "Internet Message Parsers";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})