2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, HUnit, QuickCheck, testFramework, testFrameworkHunit
|
|
|
|
, testFrameworkQuickcheck2
|
|
|
|
}:
|
2011-08-07 19:22:19 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 19:22:19 +01:00
|
|
|
pname = "base64-bytestring";
|
2013-02-09 17:24:50 +00:00
|
|
|
version = "1.0.0.1";
|
|
|
|
sha256 = "0l1v4ddjdsgi9nqzyzcxxj76rwar3lzx8gmwf2r54bqan3san9db";
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
2014-06-05 10:11:48 +01:00
|
|
|
doCheck = false;
|
2011-08-07 19:22:19 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/bos/base64-bytestring";
|
2013-02-09 17:24:50 +00:00
|
|
|
description = "Fast base64 encoding and decoding for ByteStrings";
|
2011-08-07 19:22:19 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 19:22:19 +01:00
|
|
|
};
|
|
|
|
})
|