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,15 @@
{ cabal, network, text, utf8String }:
cabal.mkDerivation (self: {
pname = "uri-encode";
version = "1.5.0.2";
sha256 = "1lsj9y3sw9wlpsw7j20frvv9a165mcqx7x7vrp2gamka1120pkym";
isLibrary = true;
isExecutable = true;
buildDepends = [ network text utf8String ];
meta = {
description = "Unicode aware uri-encoding";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})