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