2012-09-05 20:37:35 +02:00
|
|
|
{ cabal, mtl, network, split }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "urlencoded";
|
2012-11-15 12:09:58 +01:00
|
|
|
version = "0.4.0";
|
|
|
|
sha256 = "0idh70apfxx8bkbsxda4xhb0b5xf4x237dwi4v55ildrhxx4b68k";
|
2012-09-05 20:37:35 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ mtl network split ];
|
|
|
|
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;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
2012-09-05 20:37:35 +02:00
|
|
|
};
|
|
|
|
})
|