3
0
Fork 0
forked from mirrors/nixpkgs

haskell-urlencoded: patch to support recent versions of split

This commit is contained in:
Peter Simons 2012-09-06 15:46:22 +02:00
parent 8de7a575f5
commit 116a96b7a4
2 changed files with 4 additions and 1 deletions

View file

@ -7,6 +7,9 @@ cabal.mkDerivation (self: {
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl network split ];
patchPhase = ''
sed -i -e 's|split.*|split|' urlencoded.cabal
'';
meta = {
homepage = "https://github.com/pheaver/urlencoded";
description = "Generate or process x-www-urlencoded data";

View file

@ -1526,7 +1526,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
url = callPackage ../development/libraries/haskell/url {};
urlencoded = callPackage ../development/libraries/haskell/urlencoded { split = self.split_0_1_4_3; };
urlencoded = callPackage ../development/libraries/haskell/urlencoded {};
utf8Light = callPackage ../development/libraries/haskell/utf8-light {};