forked from mirrors/nixpkgs
haskell-base32-bytestring: add version 0.2.1.0
This commit is contained in:
parent
babec1351f
commit
631e4097a6
|
@ -0,0 +1,18 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, bitsExtras, cpu, hspec, QuickCheck }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "base32-bytestring";
|
||||
version = "0.2.1.0";
|
||||
sha256 = "0z0q3fw3jzprgxmq9b2iz98kf4hwl3nydrzlaiwk81aplisfdgkl";
|
||||
buildDepends = [ bitsExtras cpu ];
|
||||
testDepends = [ hspec QuickCheck ];
|
||||
meta = {
|
||||
homepage = "https://github.com/pxqr/base32-bytestring";
|
||||
description = "Fast base32 and base32hex codec for ByteStrings";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
})
|
|
@ -221,6 +221,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
base16Bytestring = callPackage ../development/libraries/haskell/base16-bytestring {};
|
||||
|
||||
base32Bytestring = callPackage ../development/libraries/haskell/base32-bytestring {};
|
||||
|
||||
base64String = callPackage ../development/libraries/haskell/base64-string {};
|
||||
|
||||
base64Bytestring = callPackage ../development/libraries/haskell/base64-bytestring {};
|
||||
|
|
Loading…
Reference in a new issue