nixpkgs/pkgs/development/libraries/haskell/jwt/default.nix
2014-12-13 12:06:09 +01:00

30 lines
1 KiB
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, base64Bytestring, cryptohash, dataDefault
, httpTypes, HUnit, network, networkUri, QuickCheck, scientific
, semigroups, tasty, tastyHunit, tastyQuickcheck, tastyTh, text
, time, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "jwt";
version = "0.5.0";
sha256 = "0445biw5rj4plbz4nbmzrn446dfsjnggzrrcn1m292g3dqp6gzgh";
buildDepends = [
aeson base64Bytestring cryptohash dataDefault httpTypes network
networkUri scientific semigroups text time unorderedContainers
vector
];
testDepends = [
aeson base64Bytestring cryptohash dataDefault httpTypes HUnit
network networkUri QuickCheck scientific semigroups tasty
tastyHunit tastyQuickcheck tastyTh text time unorderedContainers
vector
];
meta = {
homepage = "https://bitbucket.org/ssaasen/haskell-jwt";
description = "JSON Web Token (JWT) decoding and encoding";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})