a30df95691
This change brings support for building and running the regressions test suites.
19 lines
566 B
Nix
19 lines
566 B
Nix
{ cabal, base64Bytestring, conduit, hspec, QuickCheck, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "base64-conduit";
|
|
version = "1.0.0";
|
|
sha256 = "10wjgdixk5da48jpm2i91vy3ckdqpbpgba6hzn7ak6d3qac22m9q";
|
|
buildDepends = [ base64Bytestring conduit ];
|
|
testDepends = [
|
|
base64Bytestring conduit hspec QuickCheck transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Base64-encode and decode streams of bytes";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|