3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/jwt/default.nix

30 lines
1,018 B
Nix
Raw Normal View History

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