forked from mirrors/nixpkgs
Updated Haskell packages.
- derive: updated to version 2.5.9 - ghc-mod: updated to version 1.11.0 - hamlet: updated to version 1.0.1.4 - http-conduit: updated to version 1.4.1.10 - leksah: updated to version 0.12.1.3 - mmap: updated to version 0.5.8 - mtl: added version 2.1.2 - prolog-graph-lib: updated to version 0.2.0.1 - prolog: updated to version 0.2.0.1 - reactive-banana-wx: updated to version 0.6.0.1 - resourcet: updated to version 0.3.3 - shelly: updated to version 0.12.0.2 - simple-sendfile: updated to version 0.2.4 - syb: added version 0.3.6.2 - wai-app-static: updated to version 1.2.0.4 - wai: updated to version 1.2.0.3 - warp: updated to version 1.2.2 - xml-types: updated to version 0.3.2 - zlib-conduit: updated to version 0.4.0.2
This commit is contained in:
parent
c05fcf6a2b
commit
c5c98b7617
|
@ -6,8 +6,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "leksah";
|
||||
version = "0.12.1.2";
|
||||
sha256 = "01gang44cdm9xg1dx1273prkhcniidagm2r90qh4v5mrdq8139v0";
|
||||
version = "0.12.1.3";
|
||||
sha256 = "1w61wnd0nq9iqh0pwn9dz3m4qn3m0zasv0m3ki4k7plcdrmkqb3y";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "derive";
|
||||
version = "2.5.8";
|
||||
sha256 = "0l11pscya7mrn0502q8ndqn551k5aygbm7pihhs0nz8wwzr82xdv";
|
||||
version = "2.5.9";
|
||||
sha256 = "1rws401dpdck7c9jxfv9h46r06vn730lw1fsxvvidnf3hlr0yyk5";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ghc-mod";
|
||||
version = "1.10.18";
|
||||
sha256 = "1kpy0mjxag3xs8zs5kbl1arkd3341g1xr52qvzryks2ivax1zi9s";
|
||||
version = "1.11.0";
|
||||
sha256 = "19cx6jhciww2xgad3q35h3jlwiv9s9b6na2qi1cbga7p77swarsv";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hamlet";
|
||||
version = "1.0.1.3";
|
||||
sha256 = "0pdnq8kvln6jr5gwzd1fj0knd2ph1a76ra1njwaccliqig1s7j3n";
|
||||
version = "1.0.1.4";
|
||||
sha256 = "0rvsp54wrhaz5pnn136w1xlny9dkwv48ihyhq02yg5gg510v08v7";
|
||||
buildDepends = [
|
||||
blazeBuilder blazeHtml blazeMarkup failure parsec shakespeare text
|
||||
];
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "http-conduit";
|
||||
version = "1.4.1.9";
|
||||
sha256 = "0c0dnk3iqkx85453spry6qsw66pg3pjvqah0c1m64qqmv869bwbn";
|
||||
version = "1.4.1.10";
|
||||
sha256 = "0a2014bzh4vvm3qx5yarxgirzlngzy2xrwpi3bvnz1h3q0hggq01";
|
||||
buildDepends = [
|
||||
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
||||
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "mmap";
|
||||
version = "0.5.7";
|
||||
sha256 = "0f08x9kmv3a03kz5a6dpxr30nks55cs9sp55qpn2jnw31qx6hg6p";
|
||||
version = "0.5.8";
|
||||
sha256 = "17zsb95ynyrqj51h4jxi9glsih4vq33hbxycgw13z5fivv261m7y";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
meta = {
|
||||
|
|
15
pkgs/development/libraries/haskell/mtl/2.1.2.nix
Normal file
15
pkgs/development/libraries/haskell/mtl/2.1.2.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ cabal, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "mtl";
|
||||
version = "2.1.2";
|
||||
sha256 = "1vwb98ci3jnjpndym012amia41h3cjdwpy9330ws881l6dj5fxwc";
|
||||
buildDepends = [ transformers ];
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/mtl";
|
||||
description = "Monad classes, using functional dependencies";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "prolog-graph-lib";
|
||||
version = "0.1";
|
||||
sha256 = "1gryhk0jd8bvmjbjkz6n7sfnsa6iwzkckpgi51xsj5f2nwdxbl6g";
|
||||
version = "0.2.0.1";
|
||||
sha256 = "02xa4hqmhmsv7vkdy3m3dr1w3z88kc8ly0jjn7q6pba5yarci7nr";
|
||||
buildDepends = [ fgl graphviz mtl prolog text ];
|
||||
meta = {
|
||||
homepage = "https://github.com/Erdwolf/prolog";
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "prolog";
|
||||
version = "0.1";
|
||||
sha256 = "00791fb1f84wq42wvacnjl290fbn28x9hknxsic3ksi3f7psladm";
|
||||
version = "0.2.0.1";
|
||||
sha256 = "073sd3rhcfqw9csm0qsbc57ix57dv3k5yjr9hcc33b9zq5y10sp0";
|
||||
buildDepends = [ mtl parsec syb thLift transformers ];
|
||||
meta = {
|
||||
homepage = "https://github.com/Erdwolf/prolog";
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "reactive-banana-wx";
|
||||
version = "0.6.0.0";
|
||||
sha256 = "1pxcymh6xpmbkbc8i2hvjbki9s81mx69wrp8nl1i0y4pppzi8ihp";
|
||||
version = "0.6.0.1";
|
||||
sha256 = "1i674jy8fwirq267vwwdyqa4whxfx3r689rxjbrh9hyicqwcrl24";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ cabalMacosx reactiveBanana wx wxcore ];
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
{ cabal, liftedBase, monadControl, transformers, transformersBase
|
||||
{ cabal, liftedBase, monadControl, mtl, transformers
|
||||
, transformersBase
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "resourcet";
|
||||
version = "0.3.2.2";
|
||||
sha256 = "0smff49b8sbxkvzlw59qgk5mdd4lp3605mcy4amjyz9fhcn3cky2";
|
||||
version = "0.3.3";
|
||||
sha256 = "024ixrlb2x7a7ck5adi7fcsbjf5wgc5r38rk8w7r7j6piss52w9j";
|
||||
buildDepends = [
|
||||
liftedBase monadControl transformers transformersBase
|
||||
liftedBase monadControl mtl transformers transformersBase
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/snoyberg/conduit";
|
||||
|
|
|
@ -13,5 +13,6 @@ cabal.mkDerivation (self: {
|
|||
description = "shell-like (systems) programming in Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "simple-sendfile";
|
||||
version = "0.2.3";
|
||||
sha256 = "1i3jx90kwq504fdl2qbhz25psjvq9ldvwgx5cij82ajjqi61pfrv";
|
||||
version = "0.2.4";
|
||||
sha256 = "1c7imvkb5aq5mlg6a1r36fp9klniicbj56n32yvzj4qqf1zy2pbx";
|
||||
buildDepends = [ network ];
|
||||
meta = {
|
||||
description = "Cross platform library for the sendfile system call";
|
||||
|
|
14
pkgs/development/libraries/haskell/syb/0.3.6.2.nix
Normal file
14
pkgs/development/libraries/haskell/syb/0.3.6.2.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "syb";
|
||||
version = "0.3.6.2";
|
||||
sha256 = "0n1h0zlq2ygwkh7s914gfy4rg4b5kg6msd65id84c5412sri3mk4";
|
||||
meta = {
|
||||
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB";
|
||||
description = "Scrap Your Boilerplate";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "wai-app-static";
|
||||
version = "1.2.0.3";
|
||||
sha256 = "1hn4k28aa15vwvvay62rvi796fma7p3j31z6bfa9im0dxdy7sf9l";
|
||||
version = "1.2.0.4";
|
||||
sha256 = "06j9k93kzzzqznp61kwclvnnfas77jry4x93r5jn5n22198szcyi";
|
||||
buildDepends = [
|
||||
base64Bytestring blazeBuilder blazeHtml cryptohash fileEmbed
|
||||
httpDate httpTypes text time transformers unixCompat wai
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "wai";
|
||||
version = "1.2.0.2";
|
||||
sha256 = "07h0znwlnfpikw9zxk7cxnyvsgqyix7lv8rylxzj259ylwfpk9fp";
|
||||
version = "1.2.0.3";
|
||||
sha256 = "0pl6zc29z58vpvsn37siiyr89mxc4khsnmzv2408i5vhlv2ks01p";
|
||||
buildDepends = [
|
||||
blazeBuilder conduit httpTypes network text transformers vault
|
||||
];
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "warp";
|
||||
version = "1.2.1.1";
|
||||
sha256 = "1bgdvqa6c2ccxmgdsg5hjvc3mss8zgjj4xzqr5r5jdl338857xzg";
|
||||
version = "1.2.2";
|
||||
sha256 = "0jja9fjjd0f54awbx2p865w1mxj75qxy17skj1sc83i5ck32n6f0";
|
||||
buildDepends = [
|
||||
blazeBuilder blazeBuilderConduit caseInsensitive conduit httpTypes
|
||||
liftedBase network networkConduit simpleSendfile transformers
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "xml-types";
|
||||
version = "0.3.1";
|
||||
sha256 = "0ffmmidb9a1hqfbmvjxjvij2wfrqqlyjc7m7n81czrcrrsmyc1kc";
|
||||
version = "0.3.2";
|
||||
sha256 = "1aihs1n6hxq6frvxdqjqxsfwi2w2c2qx4bjypimjpjxf6d6n1396";
|
||||
buildDepends = [ text ];
|
||||
meta = {
|
||||
homepage = "https://john-millikin.com/software/haskell-xml/";
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "zlib-conduit";
|
||||
version = "0.4.0.1";
|
||||
sha256 = "07x0fgzxnwaaw5yg1ks2w9dc66biqbg50x79h84jpgb6d9pw2d7z";
|
||||
version = "0.4.0.2";
|
||||
sha256 = "1pwgyawc308rm1xcvzfz96ar11mngx79any7lragffj6f132qlm7";
|
||||
buildDepends = [ conduit transformers zlibBindings ];
|
||||
meta = {
|
||||
homepage = "http://github.com/snoyberg/conduit";
|
||||
|
|
|
@ -127,7 +127,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
html = self.html_1_0_1_2; # 7.4.2 ok
|
||||
HTTP = self.HTTP_4000_2_3; # 7.4.2 ok
|
||||
HUnit = self.HUnit_1_2_4_3; # 7.4.2 ok
|
||||
mtl = self.mtl_2_1_1; # 7.4.2 ok
|
||||
mtl = self.mtl_2_1_2; # 7.4.2 ok
|
||||
network = self.network_2_3_0_14; # 7.4.2 ok
|
||||
OpenGL = self.OpenGL_2_2_3_1; # 7.4.2 ok
|
||||
parallel = self.parallel_3_2_0_2; # 7.4.2 ok
|
||||
|
@ -138,7 +138,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
regexCompat = self.regexCompat_0_95_1; # 7.4.2 ok
|
||||
regexPosix = self.regexPosix_0_95_1; # 7.4.2 ok
|
||||
stm = self.stm_2_3; # 7.4.2 ok
|
||||
syb = self.syb_0_3_6_1; # 7.4.2 ok
|
||||
syb = self.syb_0_3_6_2; # 7.4.2 ok
|
||||
text = self.text_0_11_2_2; # 7.4.2 ok
|
||||
transformers = self.transformers_0_3_0_0; # 7.4.2 ok
|
||||
xhtml = self.xhtml_3000_2_1; # 7.4.2 ok
|
||||
|
@ -1025,8 +1025,11 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
mtl_2_1_1 = callPackage ../development/libraries/haskell/mtl/2.1.1.nix {
|
||||
transformers = self.transformers_0_3_0_0;
|
||||
};
|
||||
mtl_2_1_2 = callPackage ../development/libraries/haskell/mtl/2.1.2.nix {
|
||||
transformers = self.transformers_0_3_0_0;
|
||||
};
|
||||
mtl1 = self.mtl_1_1_1_1;
|
||||
mtl2 = self.mtl_2_1_1;
|
||||
mtl2 = self.mtl_2_1_2;
|
||||
mtl = self.mtl2;
|
||||
|
||||
mtlparse = callPackage ../development/libraries/haskell/mtlparse {};
|
||||
|
@ -1285,6 +1288,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
syb_0_3 = callPackage ../development/libraries/haskell/syb/0.3.nix {};
|
||||
syb_0_3_3 = callPackage ../development/libraries/haskell/syb/0.3.3.nix {};
|
||||
syb_0_3_6_1 = callPackage ../development/libraries/haskell/syb/0.3.6.1.nix {};
|
||||
syb_0_3_6_2 = callPackage ../development/libraries/haskell/syb/0.3.6.2.nix {};
|
||||
syb = null; # by default, we assume that syb ships with GHC, which is
|
||||
# true for the older GHC versions
|
||||
|
||||
|
|
Loading…
Reference in a new issue