Added Rest For Haskell and dependencies (rest-core, rest-types, rest-snap etc...)

This commit is contained in:
Aycan iRiCAN
2014-07-14 15:52:43 +03:00
parent d2e731e111
commit d3f763696d
13 changed files with 224 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ cabal, aeson, hashable, hxt, jsonSchema, tagged, text, tostring
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "rest-stringmap";
version = "0.2.0.2";
sha256 = "0nzkc09679c2mz3amh1avk2kfjpqbhbxsr0r9zvgcs71gqkal2mz";
buildDepends = [
aeson hashable hxt jsonSchema tagged text tostring
unorderedContainers
];
meta = {
description = "Maps with stringy keys that can be transcoded to JSON and XML";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})