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