forked from mirrors/nixpkgs
Update Haskell packages.
- hinotify: added meta.maintainers section - hledger-lib: update to version 0.18.1 - hledger: update to version 0.18.1 - hledger-web: update to version 0.18.1 - lifted-base: update to version 0.1.1.1 - monad-control: update to version 0.3.1.4 - multiarg: update to version 0.4.0.0 - pandoc: update to version 1.9.4.2 - shelly: update to version 0.12.2
This commit is contained in:
parent
3d660e4598
commit
d98161617f
|
@ -9,5 +9,6 @@ cabal.mkDerivation (self: {
|
||||||
description = "Haskell binding to INotify";
|
description = "Haskell binding to INotify";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
{ cabal, cmdargs, csv, filepath, HUnit, mtl, parsec, regexpr, safe
|
{ cabal, cmdargs, csv, filepath, HUnit, mtl, parsec, regexpr, safe
|
||||||
, shakespeareText, split, time, utf8String
|
, shakespeareText, split, time, transformers, utf8String
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "hledger-lib";
|
pname = "hledger-lib";
|
||||||
version = "0.18";
|
version = "0.18.1";
|
||||||
sha256 = "17dd8pbn5ly8rxy8yp8fz1j8m2zad9s190jzcpx9pdaw6vf2jskc";
|
sha256 = "0dv5q20n5almxxl0n68lv1172x61z2q16nvwydzrc7qp1j31d8my";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
cmdargs csv filepath HUnit mtl parsec regexpr safe shakespeareText
|
cmdargs csv filepath HUnit mtl parsec regexpr safe shakespeareText
|
||||||
split time utf8String
|
split time transformers utf8String
|
||||||
];
|
];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://hledger.org";
|
homepage = "http://hledger.org";
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "hledger-web";
|
pname = "hledger-web";
|
||||||
version = "0.18";
|
version = "0.18.1";
|
||||||
sha256 = "1cxlyw9rs1pg0ympig9svkfi9fikpbvfzm6jc7hijkg215l617np";
|
sha256 = "1khjqqjjcwcymyh395rfc39wzybacw5n64wmj2sixyw0p1l4mwg7";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "hledger";
|
pname = "hledger";
|
||||||
version = "0.18";
|
version = "0.18.1";
|
||||||
sha256 = "15jbfq9a1lydn0m998vzrx4nlpfkbv5ddvj6h03hljp562f2s0wi";
|
sha256 = "0nrs9qawvny6dl0pj3f183sgwmam9dsb2dfhp8hqnxx48g1p01lk";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "lifted-base";
|
pname = "lifted-base";
|
||||||
version = "0.1.1";
|
version = "0.1.1.1";
|
||||||
sha256 = "148631zwax809nzm01fqymmgvkscyv1kii36a12phkmg7sx014vm";
|
sha256 = "1cfk3n12qhyrrfvw410gfydbgmb7r9y65fsjp2r3c4ilcyd5li70";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
baseUnicodeSymbols monadControl transformersBase
|
baseUnicodeSymbols monadControl transformersBase
|
||||||
];
|
];
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "monad-control";
|
pname = "monad-control";
|
||||||
version = "0.3.1.3";
|
version = "0.3.1.4";
|
||||||
sha256 = "0sx0jr8hccqh519sgn428y4xfk6m5jpwfm9201vn8zj1cxlppjv9";
|
sha256 = "0mvcj6rljh2drkpf29zavwsqpzd9lw7s0n4inxm82i2017xdazy1";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
baseUnicodeSymbols transformers transformersBase
|
baseUnicodeSymbols transformers transformersBase
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{ cabal, explicitException, text, transformers, utf8String }:
|
{ cabal, explicitException, utf8String }:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "multiarg";
|
pname = "multiarg";
|
||||||
version = "0.2.0.0";
|
version = "0.4.0.0";
|
||||||
sha256 = "1jmhlh4ngmkddrkcafx0qcmzwbmi5crkmd6p8b07cfjpaq2pc6yx";
|
sha256 = "04m4ynf6x8rlnlmnl6a7jj42fszjc1bly4h3jyjxxsqjdynrv81q";
|
||||||
buildDepends = [ explicitException text transformers utf8String ];
|
buildDepends = [ explicitException utf8String ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/massysett/multiarg";
|
homepage = "https://github.com/massysett/multiarg";
|
||||||
description = "Combinators to build command line parsers";
|
description = "Combinators to build command line parsers";
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "pandoc";
|
pname = "pandoc";
|
||||||
version = "1.9.4.1";
|
version = "1.9.4.2";
|
||||||
sha256 = "0n3jfk7b1vn8b1ryys6lm1drdx469q26gi0chzlf0wss1ss07x78";
|
sha256 = "1zr2qx6bimyhzia5maqpb454hgdwjvgs234mcki4f1z3dgbq0lsk";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "shelly";
|
pname = "shelly";
|
||||||
version = "0.12.1";
|
version = "0.12.2";
|
||||||
sha256 = "11nbmymrwc76934b4vd444dzpzc33l5977wvd53wzqrsinv80c5v";
|
sha256 = "0nhycisk6jc3mqd2xqcxxgfqsqm8vp5k4g45gdljalb87rqvqkkv";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
mtl systemFileio systemFilepath text time unixCompat
|
mtl systemFileio systemFilepath text time unixCompat
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue