haskell-jwt: add 0.4.0

This commit is contained in:
Daniel Austin 2014-09-20 18:20:29 +02:00 committed by Mateusz Kowalczyk
parent db23eace0d
commit c8ba9e285a
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ cabal, aeson, base64Bytestring, cryptohash, dataDefault
, httpTypes, HUnit, network, QuickCheck, scientific, tasty
, tastyHunit, tastyQuickcheck, tastyTh, text, time
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "jwt";
version = "0.4.0";
sha256 = "0kfdrl795h7nyai1gk056kjbw2c5n3bc30aq9466pky5jv6ywlbz";
buildDepends = [
aeson base64Bytestring cryptohash dataDefault httpTypes network
scientific text time unorderedContainers
];
testDepends = [
aeson base64Bytestring cryptohash dataDefault httpTypes HUnit
network QuickCheck scientific tasty tastyHunit tastyQuickcheck
tastyTh text time unorderedContainers
];
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;
};
})

View File

@ -1426,6 +1426,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
JuicyPixelsUtil = callPackage ../development/libraries/haskell/JuicyPixels-util {};
jwt = callPackage ../development/libraries/haskell/jwt {};
kanExtensions = callPackage ../development/libraries/haskell/kan-extensions {};
kansasLava = callPackage ../development/libraries/haskell/kansas-lava {};