nixpkgs/pkgs/development/libraries/haskell/jwt/default.nix

29 lines
999 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-09-20 18:20:29 +02:00
{ cabal, aeson, base64Bytestring, cryptohash, dataDefault
2014-10-13 12:48:21 +02:00
, httpTypes, HUnit, network, networkUri, QuickCheck, scientific
, tasty, tastyHunit, tastyQuickcheck, tastyTh, text, time
2014-09-20 18:20:29 +02:00
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "jwt";
2014-10-15 01:26:08 +02:00
version = "0.4.2";
sha256 = "167qm37y5f3d05spr0z2jwkbm2sszz3khs6zd1p0az5q4nhq295w";
2014-09-20 18:20:29 +02:00
buildDepends = [
aeson base64Bytestring cryptohash dataDefault httpTypes network
2014-10-13 12:48:21 +02:00
networkUri scientific text time unorderedContainers
2014-09-20 18:20:29 +02:00
];
testDepends = [
aeson base64Bytestring cryptohash dataDefault httpTypes HUnit
2014-10-13 12:48:21 +02:00
network networkUri QuickCheck scientific tasty tastyHunit
tastyQuickcheck tastyTh text time unorderedContainers
2014-09-20 18:20:29 +02:00
];
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;
};
})