2012-09-05 20:37:35 +02:00
|
|
|
{ cabal, mtl, network, split }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "urlencoded";
|
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "1i6r05d5libcilngsa6illcazfv6g4rhibzgk8c2jsjq9cg53ihz";
|
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ mtl network split ];
|
Use jailbreak to get rid of overspecified version restrictions to fix
builds of Agda, accelerate-cuda, clientsession, filestore, ghc-events,
gitit, happstack, happstack, happstack, hledger-lib, hledger, mime-mail,
pandoc, snap, wai-app-static, yesod-static, and urlencoded.
2012-09-06 15:21:17 +02:00
|
|
|
jailbreak = true;
|
2012-09-05 20:37:35 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/pheaver/urlencoded";
|
|
|
|
description = "Generate or process x-www-urlencoded data";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|