Trying to update haxr, but not finished.
svn path=/nixpkgs/trunk/; revision=15283
This commit is contained in:
parent
cd018e50d4
commit
cea9c12283
|
@ -0,0 +1,11 @@
|
||||||
|
{cabal}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self : {
|
||||||
|
pname = "dataenc";
|
||||||
|
version = "0.11.1";
|
||||||
|
sha256 = "1212dbed8a1b8f80140d6450a7635a4365bc5733a00e2b96d00bcc526396c6bc";
|
||||||
|
meta = {
|
||||||
|
description = "Data encoding library";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{cabal, HaXml, HTTP}:
|
{cabal, HaXml, HTTP, dataenc, time}:
|
||||||
|
|
||||||
cabal.mkDerivation (self : {
|
cabal.mkDerivation (self : {
|
||||||
pname = "haxr";
|
pname = "haxr";
|
||||||
version = "3000.0.1";
|
version = "3000.1.1.2";
|
||||||
sha256 = "1sppfd8qyqggfh5m8phxdn40x17g97q6j3a8d5wspy7kcmg2qaci";
|
sha256 = "c24741a92e27d851a3376158230a52782c1e2b494405ebdde1d256819598c8e8";
|
||||||
meta = {
|
meta = {
|
||||||
description = "a Haskell library for writing XML-RPC client and server applications";
|
description = "a Haskell library for writing XML-RPC client and server applications";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [HaXml HTTP];
|
propagatedBuildInputs = [HaXml HTTP dataenc time];
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,10 @@ rec {
|
||||||
inherit cabal;
|
inherit cabal;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dataenc = import ../development/libraries/haskell/dataenc {
|
||||||
|
inherit cabal;
|
||||||
|
};
|
||||||
|
|
||||||
editline = import ../development/libraries/haskell/editline {
|
editline = import ../development/libraries/haskell/editline {
|
||||||
inherit (pkgs) libedit;
|
inherit (pkgs) libedit;
|
||||||
inherit cabal;
|
inherit cabal;
|
||||||
|
@ -104,7 +108,7 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
haxr = import ../development/libraries/haskell/haxr {
|
haxr = import ../development/libraries/haskell/haxr {
|
||||||
inherit cabal HaXml HTTP;
|
inherit cabal HaXml HTTP dataenc time;
|
||||||
};
|
};
|
||||||
|
|
||||||
haxr_th = import ../development/libraries/haskell/haxr-th {
|
haxr_th = import ../development/libraries/haskell/haxr-th {
|
||||||
|
|
Loading…
Reference in New Issue