stockholm/krebs/5pkgs/haskell/email-header.nix

26 lines
871 B
Nix
Raw Normal View History

2015-10-17 03:50:58 +00:00
{ mkDerivation, attoparsec, base, base64-bytestring, bytestring
, case-insensitive, containers, exceptions, fetchgit, QuickCheck
, stdenv, tasty, tasty-quickcheck, text, text-icu, time
}:
2018-10-06 19:58:13 +00:00
mkDerivation rec {
2015-10-17 03:50:58 +00:00
pname = "email-header";
2018-10-06 19:58:13 +00:00
version = "0.4.1-tv1";
2015-10-17 03:50:58 +00:00
src = fetchgit {
url = "https://github.com/4z3/email-header";
2018-10-06 19:58:13 +00:00
rev = "refs/tags/v${version}";
sha256 = "11xjivpj495r2ss9aqljnpzzycb57cm4sr7yzmf939rzwsd3ib0x";
2015-10-17 03:50:58 +00:00
};
buildDepends = [
attoparsec base base64-bytestring bytestring case-insensitive
containers exceptions text text-icu time
];
testDepends = [
base bytestring case-insensitive containers QuickCheck tasty
tasty-quickcheck text time
];
jailbreak = true;
homepage = "http://github.com/knrafto/email-header";
description = "Parsing and rendering of email and MIME headers";
license = stdenv.lib.licenses.bsd3;
}