mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
hackage-packages: re-generate from Hackage 2015-03-04T12:23:14+0100
This commit is contained in:
parent
8ed8277c74
commit
1bc9c33f78
@ -6492,8 +6492,8 @@ self: {
|
||||
({ mkDerivation, base, hashable, mtl, unordered-containers }:
|
||||
mkDerivation {
|
||||
pname = "HMap";
|
||||
version = "1.2.1";
|
||||
sha256 = "12dbjjvq7qlr2clbzbhwcbvmwd9amlkwmf55cn46qvvakinv6x2i";
|
||||
version = "1.2.3";
|
||||
sha256 = "0gxs0l5v2kzgy8lfyz0l3ivv1w6cb8sm30h6yv91np1nvj231nf3";
|
||||
buildDepends = [ base hashable mtl unordered-containers ];
|
||||
homepage = "https://github.com/atzeus/HMap";
|
||||
description = "Fast heterogeneous maps and unconstrained typeable like functionality";
|
||||
@ -9909,8 +9909,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "MonadCompose";
|
||||
version = "0.8.1.0";
|
||||
sha256 = "004jw7xk8hd1z19n2p0gwpkpa91b19kcxpklk5v6pw63w19h31ha";
|
||||
version = "0.8.2.0";
|
||||
sha256 = "1nzb4x8az1m4d5i75cshgjfr4xnkfi3s27rq6jkib9i67my0hsrq";
|
||||
buildDepends = [
|
||||
base data-default ghc-prim MaybeT mmorph monad-products mtl random
|
||||
transformers
|
||||
@ -10929,8 +10929,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "OpenGL";
|
||||
version = "2.11.0.0";
|
||||
sha256 = "197n015glisn4wflgdqdg914whk2giz8n5ah2zy0ak9k0d9grmya";
|
||||
version = "2.11.1.0";
|
||||
sha256 = "0fsk5jrap27rzv70q2257jwyrwr4g5qbv7kzi0fblydf7m1nq8hp";
|
||||
buildDepends = [ base bytestring GLURaw OpenGLRaw text ];
|
||||
extraLibraries = [ libX11 mesa ];
|
||||
homepage = "http://www.haskell.org/haskellwiki/Opengl";
|
||||
@ -17150,17 +17150,18 @@ self: {
|
||||
}) {};
|
||||
|
||||
"al" = callPackage
|
||||
({ mkDerivation, base, c2hs }:
|
||||
({ mkDerivation, base, c2hs, openal }:
|
||||
mkDerivation {
|
||||
pname = "al";
|
||||
version = "0.1.0.2";
|
||||
sha256 = "0c47qa1p9hiyfmp3ipcidlaxcp9a2fi6i2fdw73vsp2csvb15sip";
|
||||
version = "0.1.1.2";
|
||||
sha256 = "0cb6vvjc23nb7qfdkyc7g197rgb7shjyxv6q5kd9jdxr3rl1apf4";
|
||||
buildDepends = [ base ];
|
||||
buildTools = [ c2hs ];
|
||||
extraLibraries = [ openal ];
|
||||
homepage = "http://github.com/phaazon/al";
|
||||
description = "OpenAL 1.1 raw API.";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
}) { inherit (pkgs) openal;};
|
||||
|
||||
"alarmclock" = callPackage
|
||||
({ mkDerivation, base, stm, time, unbounded-delays }:
|
||||
@ -18904,30 +18905,28 @@ self: {
|
||||
|
||||
"apiary" = callPackage
|
||||
({ mkDerivation, base, blaze-builder, blaze-html, blaze-markup
|
||||
, bytestring, bytestring-lexing, case-insensitive
|
||||
, data-default-class, exceptions, hashable, http-date, http-types
|
||||
, HUnit, mime-types, monad-control, mtl, process, QuickCheck
|
||||
, stringsearch, template-haskell, test-framework
|
||||
, test-framework-hunit, test-framework-quickcheck, text, time
|
||||
, transformers, transformers-base, unix-compat
|
||||
, bytestring, bytestring-read, case-insensitive, data-default-class
|
||||
, exceptions, hashable, http-date, http-types, HUnit, mime-types
|
||||
, monad-control, mtl, process, stringsearch, tasty, tasty-hunit
|
||||
, tasty-quickcheck, template-haskell, text, time, transformers
|
||||
, transformers-base, types-compat, unix-compat
|
||||
, unordered-containers, vault, wai, wai-extra, web-routing
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary";
|
||||
version = "1.3.0";
|
||||
sha256 = "1d182rqrkkp76hhq71rlh7plrcnnarhhzwm21619p7yw781dfcjy";
|
||||
editedCabalFile = "a33e324c2280f4b84405bd625f6fb6b281352bc6c4dab01275b8a62114b0da16";
|
||||
version = "1.4.0";
|
||||
sha256 = "1z0wky3xhkgayxf6fzrj7dnll6r948vgqsvfhhjh32ybadmi97bm";
|
||||
buildDepends = [
|
||||
base blaze-builder blaze-html blaze-markup bytestring
|
||||
bytestring-lexing case-insensitive data-default-class exceptions
|
||||
bytestring-read case-insensitive data-default-class exceptions
|
||||
hashable http-date http-types mime-types monad-control mtl process
|
||||
stringsearch template-haskell text time transformers
|
||||
transformers-base unix-compat unordered-containers vault wai
|
||||
web-routing
|
||||
transformers-base types-compat unix-compat unordered-containers
|
||||
vault wai web-routing
|
||||
];
|
||||
testDepends = [
|
||||
base bytestring http-types HUnit mtl QuickCheck test-framework
|
||||
test-framework-hunit test-framework-quickcheck wai wai-extra
|
||||
base bytestring http-types HUnit mtl tasty tasty-hunit
|
||||
tasty-quickcheck wai wai-extra
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
@ -18939,17 +18938,16 @@ self: {
|
||||
({ mkDerivation, apiary, apiary-session, authenticate, base
|
||||
, blaze-builder, bytestring, cereal, data-default-class
|
||||
, http-client, http-client-tls, http-types, monad-control
|
||||
, resourcet, text, wai, web-routing
|
||||
, resourcet, text, types-compat, wai, web-routing
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-authenticate";
|
||||
version = "1.3.0";
|
||||
sha256 = "00ayjrkp8zdil6pc0prxv39l8rw44c225k85vnp3681qsb76am55";
|
||||
editedCabalFile = "c97a06886c850111b3fa48e7000077c71b1198b9c4458e0bca77abd69673e12f";
|
||||
version = "1.4.0";
|
||||
sha256 = "01yivdslscbri4gy19mma794v9v2gnf94wlvms8p1flrcw6xpns0";
|
||||
buildDepends = [
|
||||
apiary apiary-session authenticate base blaze-builder bytestring
|
||||
cereal data-default-class http-client http-client-tls http-types
|
||||
monad-control resourcet text wai web-routing
|
||||
monad-control resourcet text types-compat wai web-routing
|
||||
];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "authenticate support for apiary web framework";
|
||||
@ -18963,8 +18961,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-clientsession";
|
||||
version = "1.3.0";
|
||||
sha256 = "158zhcgrxgwn8ljh93qlls71wdfbd8081214cfmxb9k41l927y55";
|
||||
version = "1.4.0";
|
||||
sha256 = "1z96c4zfyyvrihr1al9zp6pwv4wxkfq02a1z63bxxrrfglrs3fx6";
|
||||
buildDepends = [
|
||||
apiary apiary-cookie apiary-session base bytestring cereal
|
||||
clientsession data-default-class time unix-compat vault
|
||||
@ -18976,16 +18974,15 @@ self: {
|
||||
|
||||
"apiary-cookie" = callPackage
|
||||
({ mkDerivation, apiary, base, blaze-builder, blaze-html
|
||||
, bytestring, cookie, time, wai, web-routing
|
||||
, bytestring, cookie, time, types-compat, wai, web-routing
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-cookie";
|
||||
version = "1.3.0";
|
||||
sha256 = "1y152d92ksz64iqgv2ck4s4dxlpmg72gfk9yq6f2wx0axjwm16nm";
|
||||
editedCabalFile = "cc3edd1f078c168eae05bc559a1ff96077e3d2ae158b081909ac7c9f7fe051c6";
|
||||
version = "1.4.0";
|
||||
sha256 = "017bxqavv4w5r2ghgmyhljqa4fyzl02v2sjwxi056s3phgrlrkrx";
|
||||
buildDepends = [
|
||||
apiary base blaze-builder blaze-html bytestring cookie time wai
|
||||
web-routing
|
||||
apiary base blaze-builder blaze-html bytestring cookie time
|
||||
types-compat wai web-routing
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
@ -18997,9 +18994,8 @@ self: {
|
||||
({ mkDerivation, apiary, base, blaze-builder, wai-extra }:
|
||||
mkDerivation {
|
||||
pname = "apiary-eventsource";
|
||||
version = "1.3.0";
|
||||
sha256 = "192bhk54z1gw9r9gnws19z8b81i0v163vb2s09alad8c7v5d8ksp";
|
||||
editedCabalFile = "ba4f13a331bfe4d0330e022352bba6878191a90eca5407971a2de4bb6f14c6c5";
|
||||
version = "1.4.0";
|
||||
sha256 = "0xh1pm1l59n4c48vbk3ls42fxh4lzr6p8k8rmij1hl58zrkgbjd7";
|
||||
buildDepends = [ apiary base blaze-builder wai-extra ];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "eventsource support for apiary web framework";
|
||||
@ -19008,15 +19004,16 @@ self: {
|
||||
|
||||
"apiary-helics" = callPackage
|
||||
({ mkDerivation, apiary, base, bytestring, data-default-class
|
||||
, helics, helics-wai, monad-control, text, transformers, vault, wai
|
||||
, helics, helics-wai, monad-control, text, transformers
|
||||
, types-compat, vault, wai
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-helics";
|
||||
version = "1.3.0";
|
||||
sha256 = "04wbh5hn0ycr2mp4b3y9na61k26rd3y10724xwssfxjmk3lnh2bn";
|
||||
version = "1.4.0";
|
||||
sha256 = "1qm9fnhzafdja6fr20c7qhl6dmagmnzn23ni49ln5k55kbawfk8a";
|
||||
buildDepends = [
|
||||
apiary base bytestring data-default-class helics helics-wai
|
||||
monad-control text transformers vault wai
|
||||
monad-control text transformers types-compat vault wai
|
||||
];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "helics support for apiary web framework";
|
||||
@ -19027,15 +19024,16 @@ self: {
|
||||
"apiary-logger" = callPackage
|
||||
({ mkDerivation, apiary, base, data-default-class, fast-logger
|
||||
, lifted-base, monad-control, monad-logger, transformers
|
||||
, transformers-base
|
||||
, transformers-base, types-compat
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-logger";
|
||||
version = "1.3.0";
|
||||
sha256 = "01kljhlkp6kdwbl4mxgvjd9h6iwrxkbgkik0wpv3rgzizacls1c3";
|
||||
version = "1.4.0";
|
||||
sha256 = "0pf030sn4mf05avl11hs9kz6qi9667s2vavn3wsxp1anl9bghk48";
|
||||
buildDepends = [
|
||||
apiary base data-default-class fast-logger lifted-base
|
||||
monad-control monad-logger transformers transformers-base
|
||||
types-compat
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
@ -19045,15 +19043,15 @@ self: {
|
||||
|
||||
"apiary-memcached" = callPackage
|
||||
({ mkDerivation, apiary, base, bytestring, data-default-class
|
||||
, memcached-binary, monad-control, text, transformers
|
||||
, memcached-binary, monad-control, text, transformers, types-compat
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-memcached";
|
||||
version = "1.3.0";
|
||||
sha256 = "11niagwak3qr493nq9h35px54qj5hn199ra97h99959hhh0d9gfa";
|
||||
version = "1.4.0";
|
||||
sha256 = "1rwkj7byc84yism5sxphs1s231910ay8w7lap2cdg0y9k9f24gby";
|
||||
buildDepends = [
|
||||
apiary base bytestring data-default-class memcached-binary
|
||||
monad-control text transformers
|
||||
monad-control text transformers types-compat
|
||||
];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "memcached client for apiary web framework";
|
||||
@ -19063,15 +19061,15 @@ self: {
|
||||
"apiary-mongoDB" = callPackage
|
||||
({ mkDerivation, apiary, base, bson, data-default-class
|
||||
, lifted-base, monad-control, mongoDB, resource-pool, text, time
|
||||
, transformers
|
||||
, transformers, types-compat
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-mongoDB";
|
||||
version = "1.3.0";
|
||||
sha256 = "14k9b2cq0s3v4n4akyn4n65kcim02j5dki40zckf0754mxyh2ghi";
|
||||
version = "1.4.0";
|
||||
sha256 = "1srnkyw1i0vjarwqg13cmnwc0x0ab5m8scax9wd4scsmblpa75wd";
|
||||
buildDepends = [
|
||||
apiary base bson data-default-class lifted-base monad-control
|
||||
mongoDB resource-pool text time transformers
|
||||
mongoDB resource-pool text time transformers types-compat
|
||||
];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "mongoDB support for apiary web framework";
|
||||
@ -19081,15 +19079,16 @@ self: {
|
||||
"apiary-persistent" = callPackage
|
||||
({ mkDerivation, apiary, apiary-logger, base, monad-control
|
||||
, monad-logger, persistent, resource-pool, resourcet, transformers
|
||||
, transformers-base, web-routing
|
||||
, transformers-base, types-compat, web-routing
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-persistent";
|
||||
version = "1.3.0";
|
||||
sha256 = "0mr86mx3fplcbapgasi6famz16b0svzvn92bssdisfcqvs43ki8a";
|
||||
version = "1.4.0";
|
||||
sha256 = "00jaiykbxj1lh8qgv4y0ma9awaj1ymrjskwr9ra5pmka1mrwbih9";
|
||||
buildDepends = [
|
||||
apiary apiary-logger base monad-control monad-logger persistent
|
||||
resource-pool resourcet transformers transformers-base web-routing
|
||||
resource-pool resourcet transformers transformers-base types-compat
|
||||
web-routing
|
||||
];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "persistent support for apiary web framework";
|
||||
@ -19099,15 +19098,15 @@ self: {
|
||||
"apiary-purescript" = callPackage
|
||||
({ mkDerivation, apiary, base, bytestring, data-default-class
|
||||
, filepath, Glob, parsec, purescript, text, transformers
|
||||
, unordered-containers
|
||||
, types-compat, unordered-containers
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-purescript";
|
||||
version = "1.3.2";
|
||||
sha256 = "0racg8y9g3rdkjlwgddqn4ja3rm3my6rxr6c5dbkhk6lx8hrr4k2";
|
||||
version = "1.4.0";
|
||||
sha256 = "0z1d2wqpa86bv6xkpiw696sn77fdq52vk2s8951v8qdffbxia3jz";
|
||||
buildDepends = [
|
||||
apiary base bytestring data-default-class filepath Glob parsec
|
||||
purescript text transformers unordered-containers
|
||||
purescript text transformers types-compat unordered-containers
|
||||
];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "purescript compiler for apiary web framework";
|
||||
@ -19115,12 +19114,12 @@ self: {
|
||||
}) {};
|
||||
|
||||
"apiary-session" = callPackage
|
||||
({ mkDerivation, apiary, base, wai, web-routing }:
|
||||
({ mkDerivation, apiary, base, types-compat, wai, web-routing }:
|
||||
mkDerivation {
|
||||
pname = "apiary-session";
|
||||
version = "1.3.0";
|
||||
sha256 = "0sw33mbivb5849rsl1x5fbbh17is867l0n1f0vyrxrgpbvb58zi1";
|
||||
buildDepends = [ apiary base wai web-routing ];
|
||||
version = "1.4.0";
|
||||
sha256 = "0jnppjykcrzdvlsli2ycyc11874dfqhwayny5p3x8nx9hnwxhk23";
|
||||
buildDepends = [ apiary base types-compat wai web-routing ];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
description = "session support for apiary web framework";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
@ -19132,8 +19131,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "apiary-websockets";
|
||||
version = "1.3.0";
|
||||
sha256 = "0kb4vjksdwr4p9qmbi7h0if4czdbp9mb2kb8xjgprdsn3wx13wzj";
|
||||
version = "1.4.0";
|
||||
sha256 = "0nslzy0s24jn58jd1q4z2gf0h7n1y2xks7cw86i9ybdph697wpp1";
|
||||
buildDepends = [
|
||||
apiary base wai-websockets web-routing websockets
|
||||
];
|
||||
@ -26094,12 +26093,12 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "bytestring-read";
|
||||
version = "0.1.0";
|
||||
sha256 = "0ipy7y89d6ssfw4kck8vdlc7awsb0xkrj783dzwpz6n2h75n4g3n";
|
||||
version = "0.2.0";
|
||||
sha256 = "08622w2n7aphnv5wyisd5bz7r4nbyb1f86f4g1yia0r3x687sp5a";
|
||||
buildDepends = [ base bytestring types-compat ];
|
||||
testDepends = [ base bytestring doctest tasty tasty-quickcheck ];
|
||||
homepage = "https://github.com/philopon/bytestring-read";
|
||||
description = "fast ByteString to Double converting library";
|
||||
description = "fast ByteString to number converting library";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
@ -30747,18 +30746,18 @@ self: {
|
||||
|
||||
"colada" = callPackage
|
||||
({ mkDerivation, base, bytestring, cereal, cmdargs, containers
|
||||
, fclabels, ghc-prim, ListZipper, monad-atom, mtl, split, swift-lda
|
||||
, text, vector
|
||||
, fclabels, ghc-prim, ListZipper, monad-atom, mtl, nlp-scores
|
||||
, split, swift-lda, text, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "colada";
|
||||
version = "0.8.0.0";
|
||||
sha256 = "09a1izl99w532ldfma2zxhn6f1lsbisf3p0hy0dqkyyip01pcd8n";
|
||||
version = "0.8.4.0";
|
||||
sha256 = "16inmr2hp2racg85crrpwd45p1wgjhcp7w242nixc8dlwdy1lkz3";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
base bytestring cereal cmdargs containers fclabels ghc-prim
|
||||
ListZipper monad-atom mtl split swift-lda text vector
|
||||
ListZipper monad-atom mtl nlp-scores split swift-lda text vector
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://bitbucket.org/gchrupala/colada";
|
||||
@ -37090,17 +37089,20 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "debian";
|
||||
version = "3.85.2";
|
||||
sha256 = "0fri7225aaj8pn2p0mn12rqaq540r9f8jnb3lak8zddvnj51kxaf";
|
||||
version = "3.87.1";
|
||||
sha256 = "1g8l293gk06qjyfng70nzwzir7w27fajbkc1ck6b9w96rpcr3ipf";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
ansi-wl-pprint base bytestring bzlib containers directory either
|
||||
exceptions filepath HaXml HUnit ListLike mtl network network-uri
|
||||
old-locale parsec pretty prettyclass process process-extras pureMD5
|
||||
base bytestring bzlib containers directory either exceptions
|
||||
filepath HaXml HUnit ListLike mtl network network-uri old-locale
|
||||
parsec pretty prettyclass process process-extras pureMD5
|
||||
regex-compat regex-tdfa template-haskell text time unix Unixutils
|
||||
utf8-string zlib
|
||||
];
|
||||
testDepends = [
|
||||
ansi-wl-pprint base HUnit parsec pretty prettyclass regex-tdfa text
|
||||
];
|
||||
homepage = "https://github.com/ddssff/debian-haskell";
|
||||
description = "Modules for working with the Debian package system";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
@ -37776,6 +37778,23 @@ self: {
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"derive-topdown" = callPackage
|
||||
({ mkDerivation, base, derive, mtl, template-haskell
|
||||
, template-haskell-util
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "derive-topdown";
|
||||
version = "0.0.0.2";
|
||||
sha256 = "0gdalqq1ks9jjp34kzavlx2ncpdad2pf6vdhx64yii5l2nl04r8p";
|
||||
buildDepends = [
|
||||
base derive mtl template-haskell template-haskell-util
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/HaskellZhangSong/derive-topdown";
|
||||
description = "This library will help you generate Haskell empty Generic instances and deriving type instances from the top automatically to the bottom for composited data types";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"derive-trie" = callPackage
|
||||
({ mkDerivation, array, base, containers, template-haskell }:
|
||||
mkDerivation {
|
||||
@ -37846,8 +37865,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "descriptive";
|
||||
version = "0.9.2";
|
||||
sha256 = "1dkq3ab8ggbaz8ahk7iik1bhwnhzffmpr0dp0n2gvrm7lnas2s77";
|
||||
version = "0.9.3";
|
||||
sha256 = "1kb6fca7fsg82ij6zlc85p9mfaxr3l5z45sjjcx6zvli1lknmqz0";
|
||||
buildDepends = [
|
||||
aeson base bifunctors containers mtl scientific text transformers
|
||||
vector
|
||||
@ -39592,8 +39611,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "diversity";
|
||||
version = "0.3.5.1";
|
||||
sha256 = "0y6rkzn730dyhvssv8wqc0047f63pvwiscr88236nn05789i6f5w";
|
||||
version = "0.4.0.1";
|
||||
sha256 = "15baqhwzhdsbn2iz2r7vkf66nbv0p4ni1qkpnpwblwbcnvfk2lzq";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@ -39891,8 +39910,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "doctest";
|
||||
version = "0.9.12";
|
||||
sha256 = "0svm55qb8p6cb7359cpnfyg6i6smw5ajr6yyswl22mqqgxyydq53";
|
||||
version = "0.9.13";
|
||||
sha256 = "0xl570ay5bw1rpd1aw59c092rnwjbp9qykh2rhpxyvl333p8mg00";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@ -43257,13 +43276,13 @@ self: {
|
||||
}) {};
|
||||
|
||||
"euler" = callPackage
|
||||
({ mkDerivation, base, hspec }:
|
||||
({ mkDerivation, base, hlint, hspec }:
|
||||
mkDerivation {
|
||||
pname = "euler";
|
||||
version = "0.3.0";
|
||||
sha256 = "0spxm1g2fpqjdz1k7zf1na2grs0x3yr1w60kv9ikznr5w1hfpbv4";
|
||||
version = "0.3.3";
|
||||
sha256 = "16rd09kg7wcnli8fg5m6415hxx2y50930qad7ifglkw2p6cfwxg2";
|
||||
buildDepends = [ base ];
|
||||
testDepends = [ base hspec ];
|
||||
testDepends = [ base hlint hspec ];
|
||||
homepage = "https://github.com/decomputed/euler";
|
||||
description = "Mathematics utilities for Haskell";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
@ -50852,13 +50871,12 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "graceful";
|
||||
version = "0.1.1.4";
|
||||
sha256 = "1dj23pkvh013428247s6n6vsbv3klfa5gj9wrjs1qmaz1gkc216a";
|
||||
version = "0.1.1.5";
|
||||
sha256 = "1kl4y01ny5w1y77r2jf830d7vd99by7frk106m2wc9nbl066mbhr";
|
||||
buildDepends = [ base directory network stm unix ];
|
||||
testDepends = [
|
||||
base directory filepath hspec network process stm unix
|
||||
];
|
||||
jailbreak = true;
|
||||
description = "Library to write graceful shutdown / upgrade service";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
@ -51411,17 +51429,17 @@ self: {
|
||||
}) {};
|
||||
|
||||
"gravatar" = callPackage
|
||||
({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5
|
||||
, text
|
||||
({ mkDerivation, base, bytestring, data-default, hspec, HTTP
|
||||
, pureMD5, text
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "gravatar";
|
||||
version = "0.6";
|
||||
sha256 = "035qhrk0s4bpv9xvji4j7w2r98gppn2armz4wjdjy8f50anjpfw3";
|
||||
version = "0.8.0";
|
||||
sha256 = "1mzl08qzwzzhz6bvkz4qnrdnzsgvsmi2lnhzf743yzx4msn00q3g";
|
||||
buildDepends = [ base bytestring data-default HTTP pureMD5 text ];
|
||||
homepage = "http://github.com/pbrisbin/gravatar";
|
||||
description = "Look up gravatar image urls by email address";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
testDepends = [ base hspec text ];
|
||||
description = "Generate Gravatar image URLs";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"gray-code" = callPackage
|
||||
@ -54887,22 +54905,24 @@ self: {
|
||||
|
||||
"happstack-server" = callPackage
|
||||
({ mkDerivation, base, base64-bytestring, blaze-html, bytestring
|
||||
, containers, directory, extensible-exceptions, filepath, hslogger
|
||||
, html, HUnit, monad-control, mtl, network, network-uri, old-locale
|
||||
, parsec, process, sendfile, syb, system-filepath, template-haskell
|
||||
, text, threads, time, time-compat, transformers, transformers-base
|
||||
, containers, directory, exceptions, extensible-exceptions
|
||||
, filepath, hslogger, html, HUnit, monad-control, mtl, network
|
||||
, network-uri, old-locale, parsec, process, sendfile, syb
|
||||
, system-filepath, template-haskell, text, threads, time
|
||||
, time-compat, transformers, transformers-base, transformers-compat
|
||||
, unix, utf8-string, xhtml, zlib
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "happstack-server";
|
||||
version = "7.4.0";
|
||||
sha256 = "009y87g4wika9g0p58v8sdayh41rixkivhvi7j1dnxbm4qy89qpk";
|
||||
version = "7.4.1";
|
||||
sha256 = "0y3y4im18vihh4phhb6mx194gdz02z46mxrfgvf8kmg3db5bmqlk";
|
||||
buildDepends = [
|
||||
base base64-bytestring blaze-html bytestring containers directory
|
||||
extensible-exceptions filepath hslogger html monad-control mtl
|
||||
network network-uri old-locale parsec process sendfile syb
|
||||
system-filepath template-haskell text threads time time-compat
|
||||
transformers transformers-base unix utf8-string xhtml zlib
|
||||
exceptions extensible-exceptions filepath hslogger html
|
||||
monad-control mtl network network-uri old-locale parsec process
|
||||
sendfile syb system-filepath template-haskell text threads time
|
||||
time-compat transformers transformers-base transformers-compat unix
|
||||
utf8-string xhtml zlib
|
||||
];
|
||||
testDepends = [ base bytestring containers HUnit parsec zlib ];
|
||||
jailbreak = true;
|
||||
@ -55160,6 +55180,24 @@ self: {
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) { groonga = null;};
|
||||
|
||||
"haroonga-httpd" = callPackage
|
||||
({ mkDerivation, base, directory, haroonga, http-types, old-locale
|
||||
, optparse-applicative, scotty, text, time, transformers, wai-extra
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "haroonga-httpd";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "15236s7289mckymapnvs6fx31lp6j68d8c38882qh6wwk9z71d5j";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
base directory haroonga http-types old-locale optparse-applicative
|
||||
scotty text time transformers wai-extra
|
||||
];
|
||||
description = "Yet another Groonga http server";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
}) {};
|
||||
|
||||
"harp" = callPackage
|
||||
({ mkDerivation, base }:
|
||||
mkDerivation {
|
||||
@ -57519,23 +57557,24 @@ self: {
|
||||
|
||||
"haste-compiler" = callPackage
|
||||
({ mkDerivation, array, base, binary, blaze-builder, bytestring
|
||||
, bzlib, containers, data-binary-ieee754, data-default, directory
|
||||
, either, filepath, ghc, ghc-paths, ghc-prim, HTTP, monads-tf, mtl
|
||||
, network, network-uri, process, random, shellmate, system-fileio
|
||||
, tar, transformers, utf8-string, websockets
|
||||
, bytestring-builder, bzlib, containers, data-binary-ieee754
|
||||
, data-default, directory, either, filepath, ghc, ghc-paths
|
||||
, ghc-prim, HTTP, monads-tf, mtl, network, network-uri, process
|
||||
, random, shellmate, system-fileio, tar, transformers, utf8-string
|
||||
, websockets
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "haste-compiler";
|
||||
version = "0.4.4.1";
|
||||
sha256 = "1h98zwyf0ycdrzxwak40accr6xyi38s6ckkyl4mqfvbm3hz2vfq8";
|
||||
version = "0.4.4.3";
|
||||
sha256 = "1psmwbwan35kxy73b87m07g2rj13f5ijlsfhdylib1yypjlg0qaq";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
array base binary blaze-builder bytestring bzlib containers
|
||||
data-binary-ieee754 data-default directory either filepath ghc
|
||||
ghc-paths ghc-prim HTTP monads-tf mtl network network-uri process
|
||||
random shellmate system-fileio tar transformers utf8-string
|
||||
websockets
|
||||
array base binary blaze-builder bytestring bytestring-builder bzlib
|
||||
containers data-binary-ieee754 data-default directory either
|
||||
filepath ghc ghc-paths ghc-prim HTTP monads-tf mtl network
|
||||
network-uri process random shellmate system-fileio tar transformers
|
||||
utf8-string websockets
|
||||
];
|
||||
configureFlags = [ "-fportable" ];
|
||||
homepage = "http://haste-lang.org/";
|
||||
@ -62114,7 +62153,6 @@ self: {
|
||||
homepage = "http://ianwookim.org/hoodle";
|
||||
description = "Executable for hoodle";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"hoodle-builder" = callPackage
|
||||
@ -62164,7 +62202,6 @@ self: {
|
||||
homepage = "http://ianwookim.org/hoodle";
|
||||
description = "Core library for hoodle";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) { inherit (pkgs.xlibs) libX11; inherit (pkgs.xlibs) libXi;};
|
||||
|
||||
"hoodle-extra" = callPackage
|
||||
@ -62234,7 +62271,6 @@ self: {
|
||||
homepage = "http://ianwookim.org/hoodle";
|
||||
description = "publish hoodle files as a static web site";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"hoodle-render" = callPackage
|
||||
@ -62255,7 +62291,6 @@ self: {
|
||||
];
|
||||
description = "Hoodle file renderer";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"hoodle-types" = callPackage
|
||||
@ -67433,8 +67468,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "hunt-searchengine";
|
||||
version = "0.3.0.0";
|
||||
sha256 = "0p1w2asr7q1d5xyrkc6g3m8as1shg4g5bpxknn30m7m6nyskivn2";
|
||||
version = "0.3.0.1";
|
||||
sha256 = "1y8pq158jwdl3zq5f0xdgszihp8z181lhwd92d66ckw9nh0sllw6";
|
||||
buildDepends = [
|
||||
aeson aeson-pretty base binary bytestring containers data-default
|
||||
data-r-tree data-stringmap deepseq dlist filepath hslogger
|
||||
@ -70750,11 +70785,10 @@ self: {
|
||||
({ mkDerivation, base, QuickCheck }:
|
||||
mkDerivation {
|
||||
pname = "ireal";
|
||||
version = "0.1";
|
||||
sha256 = "0qphr5fr118549wr09aq6yf4v7f346pdv0w8ga7a1svq3ckkyp5d";
|
||||
editedCabalFile = "af37b981aa1951e703f72692dfc337c0a0048afaf2148307d5061b035ab62ef7";
|
||||
version = "0.2";
|
||||
sha256 = "0my93h51lfziqvqnnvzkrqpnc5bjg6blr46drd37861l5svid2a1";
|
||||
buildDepends = [ base QuickCheck ];
|
||||
description = "Real numbers and intervals with not so inefficient exact arithmetic";
|
||||
description = "Real numbers and intervals with relatively efficient exact arithmetic";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
@ -72757,8 +72791,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "kansas-lava-papilio";
|
||||
version = "0.1.0";
|
||||
sha256 = "0ikc6yfcv2fjx0szfmp92nrdhdfdivlc14a7w214i0q3vrncjkzm";
|
||||
version = "0.2.0";
|
||||
sha256 = "1p1mlpcm5jaxa6ja5g9vcgkf1dqnh6b2xzy45m0qas9ak47qrhrd";
|
||||
buildDepends = [
|
||||
ansi-terminal base bytestring data-default directory filepath
|
||||
kansas-lava kansas-lava-cores netlist network sized-types
|
||||
@ -80874,8 +80908,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "midi-util";
|
||||
version = "0.1";
|
||||
sha256 = "19b6x7n49yd6jwld65k2z5zj4mg5s0zgs3zb7y8a4fj2jp15p8kn";
|
||||
version = "0.1.1";
|
||||
sha256 = "14apfrhahm5pniwpjgk5ckgb1y6zlfxcb91xsh4qpg1axav89cr2";
|
||||
buildDepends = [ base containers event-list midi non-negative ];
|
||||
homepage = "http://github.com/mtolly/midi-util";
|
||||
description = "Utility functions for processing MIDI files";
|
||||
@ -82116,6 +82150,22 @@ self: {
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"monad-parallel-progressbar" = callPackage
|
||||
({ mkDerivation, base, monad-parallel, monadIO
|
||||
, terminal-progress-bar
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "monad-parallel-progressbar";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "0h714gijrmg5z1cjn86j0q58igcrqwbad5yazhhmnb2xzvz1r2p5";
|
||||
buildDepends = [
|
||||
base monad-parallel monadIO terminal-progress-bar
|
||||
];
|
||||
homepage = "https://github.com/mnacamura/monad-parallel-progressbar";
|
||||
description = "Parallel execution of monadic computations with a progress bar";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"monad-param" = callPackage
|
||||
({ mkDerivation, base, mtl, stm }:
|
||||
mkDerivation {
|
||||
@ -86224,8 +86274,8 @@ self: {
|
||||
({ mkDerivation, base, containers, strict }:
|
||||
mkDerivation {
|
||||
pname = "nlp-scores";
|
||||
version = "0.6.2";
|
||||
sha256 = "0zknj60jh2pg5lih1hbmhbig7mhqz22pybxr6hvm562j17jysg4k";
|
||||
version = "0.7.0";
|
||||
sha256 = "0cxa6f4y3416hlal4wnqf0qpq82zj9x58nprnaw3s2kdxxav0d9m";
|
||||
buildDepends = [ base containers strict ];
|
||||
homepage = "https://bitbucket.org/gchrupala/lingo";
|
||||
description = "Scoring functions commonly used for evaluation in NLP and IR";
|
||||
@ -90514,6 +90564,29 @@ self: {
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"persona-idp" = callPackage
|
||||
({ mkDerivation, aeson, asn1-types, base, blaze-markup, bytestring
|
||||
, crypto-random, directory, filepath, hamlet, http-types, jose
|
||||
, lens, optparse-applicative, pem, persona, scotty, shakespeare
|
||||
, text, time, transformers, unix, wai, x509
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "persona-idp";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "11zwic1id47a9zmxg0jd2qfsaygmy5izc8xpl5c5mkby3r7akp78";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
aeson asn1-types base blaze-markup bytestring crypto-random
|
||||
directory filepath hamlet http-types jose lens optparse-applicative
|
||||
pem persona scotty shakespeare text time transformers unix wai x509
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "https://github.com/frasertweedale/hs-persona-idp";
|
||||
description = "Persona (BrowserID) Identity Provider";
|
||||
license = stdenv.lib.licenses.agpl3;
|
||||
}) {};
|
||||
|
||||
"pesca" = callPackage
|
||||
({ mkDerivation, base, process }:
|
||||
mkDerivation {
|
||||
@ -90600,8 +90673,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "pgdl";
|
||||
version = "7.5";
|
||||
sha256 = "00v80ppb3fl89jd8kdzs3phskbm3d2c27f8hxckdfrrq05wa56b3";
|
||||
version = "7.6";
|
||||
sha256 = "1vgvf7xbzkmb5nbxgaf552i18p22pkj9wgyz3mhbg1m0j2jr1dnj";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@ -92350,7 +92423,6 @@ self: {
|
||||
homepage = "http://www.haskell.org/gtk2hs/";
|
||||
description = "Binding to the Poppler";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) { inherit (pkgs) gdk_pixbuf; inherit (pkgs.gnome) pango;
|
||||
inherit (pkgs) poppler;};
|
||||
|
||||
@ -93331,8 +93403,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "pretty-show";
|
||||
version = "1.6.8";
|
||||
sha256 = "0vfb712dvbb91659sch62d06vm0451b9l4l0hdwnlbhzjymmh2rs";
|
||||
version = "1.6.8.2";
|
||||
sha256 = "1s95nzjkmqb747s50i68c9s8p91cxgydzqkd2l5yjzdaygrvrhqv";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@ -93341,7 +93413,7 @@ self: {
|
||||
buildTools = [ happy ];
|
||||
homepage = "http://wiki.github.com/yav/pretty-show";
|
||||
description = "Tools for working with derived `Show` instances and generic inspection of values";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"pretty-sop" = callPackage
|
||||
@ -98958,14 +99030,13 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "retry";
|
||||
version = "0.5.1";
|
||||
sha256 = "1k5qv7c960dayhddvra1gpy1zv90rdjcrzpg8nzar9bpcxapczvj";
|
||||
version = "0.6";
|
||||
sha256 = "1ry2zqs5361mg5ibnd6awjpl3nl3a6ha18m0v2f28hs9kw6dnsgj";
|
||||
buildDepends = [ base data-default-class exceptions transformers ];
|
||||
testDepends = [
|
||||
base data-default-class exceptions hspec HUnit QuickCheck time
|
||||
transformers
|
||||
];
|
||||
jailbreak = true;
|
||||
homepage = "http://github.com/Soostone/retry";
|
||||
description = "Retry combinators for monadic actions that may fail";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
@ -99027,8 +99098,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "reverse-geocoding";
|
||||
version = "0.1.1.1";
|
||||
sha256 = "05a6s6ax047b8mg73b9zs4qv33qnmlhk87a8lxnd8xx2gba9vxcb";
|
||||
version = "0.2.1";
|
||||
sha256 = "089p1fv1ghznfsnhw1bdnwna3hcxmmqakw2qgzg91w5gifzaf18s";
|
||||
buildDepends = [
|
||||
aeson base iso3166-country-codes lens lens-aeson text wreq
|
||||
];
|
||||
@ -100809,8 +100880,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "satchmo";
|
||||
version = "2.9.1";
|
||||
sha256 = "1pa5zm5r7gp4lir5yhw6a41g1m563j54hsmn72d92801a1wv6rd2";
|
||||
version = "2.9.2";
|
||||
sha256 = "0dc5bmwv19jxv6wqkhy3mc2fdawl53c3y0cyy0zyh4zb30iwkpi5";
|
||||
buildDepends = [
|
||||
array base bytestring containers directory minisat mtl process
|
||||
];
|
||||
@ -102554,8 +102625,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "servant";
|
||||
version = "0.2.1";
|
||||
sha256 = "1i7yvxvil65lp1gizh99dn4gj1r7vcqslq1w7sqykj88y9h22p3x";
|
||||
version = "0.2.2";
|
||||
sha256 = "1pblmnarq1939d2krwbmd9ssm68ar9ip54dl28zjv2j51vhhhzhc";
|
||||
buildDepends = [
|
||||
base parsec string-conversions template-haskell text
|
||||
];
|
||||
@ -102569,18 +102640,18 @@ self: {
|
||||
|
||||
"servant-client" = callPackage
|
||||
({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq
|
||||
, either, exceptions, hspec, http-client, http-types, network
|
||||
, network-uri, QuickCheck, safe, servant, servant-server
|
||||
, string-conversions, text, transformers, wai, warp
|
||||
, either, exceptions, hspec, http-client, http-client-tls
|
||||
, http-types, network, network-uri, QuickCheck, safe, servant
|
||||
, servant-server, string-conversions, text, transformers, wai, warp
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "servant-client";
|
||||
version = "0.2.1";
|
||||
sha256 = "1mwmca96sld3s6n4hxq3zl9pjw24halwa061awjb23kc49cmp4pn";
|
||||
version = "0.2.2";
|
||||
sha256 = "0b96aglic4aawdcpaxyv9k807kjfrr0a9kniqgj5nfcpgwglnp5r";
|
||||
buildDepends = [
|
||||
aeson attoparsec base bytestring either exceptions http-client
|
||||
http-types network-uri safe servant string-conversions text
|
||||
transformers
|
||||
http-client-tls http-types network-uri safe servant
|
||||
string-conversions text transformers
|
||||
];
|
||||
testDepends = [
|
||||
aeson base bytestring deepseq either hspec http-types network
|
||||
@ -102598,8 +102669,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "servant-docs";
|
||||
version = "0.3";
|
||||
sha256 = "0frwzd90yjvrwkgbwhr4vf1cr0ndzsp56hi2lp3np8axmha4q1fr";
|
||||
version = "0.3.1";
|
||||
sha256 = "1xbwi5ix5yanrcldc97dwim7s358g7hbr5pwk3r6azknwjzf5fd4";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@ -102717,8 +102788,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "servant-server";
|
||||
version = "0.2.3";
|
||||
sha256 = "0n4r145jd1g07g0a1mhbc7s61h6cbbvjvhzwngff756iky7fkcb9";
|
||||
version = "0.2.4";
|
||||
sha256 = "11bds7zhkvqg9w27kb0dd792qvz8gjgkmkpbnijvwwzah5gmipi0";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
@ -103235,11 +103306,23 @@ self: {
|
||||
({ mkDerivation, base, bytestring, css-text, hjsmin, shake, text }:
|
||||
mkDerivation {
|
||||
pname = "shake-minify";
|
||||
version = "0.1.0";
|
||||
sha256 = "0n565dyfr8s7jl4cjhs8w7qd2lschaasgzg959c760ci63ys968d";
|
||||
version = "0.1.1";
|
||||
sha256 = "0jg7mzgmi15ig1xwkw8mn593h9246k0higy7hlmlzh4qx4pz0w9v";
|
||||
buildDepends = [ base bytestring css-text hjsmin shake text ];
|
||||
homepage = "https://github.com/LukeHoersten/shake-minify";
|
||||
description = "Shake Minify Actions";
|
||||
description = "Shake Minify Rules";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"shake-pack" = callPackage
|
||||
({ mkDerivation, base, bytestring, bzlib, shake, tar }:
|
||||
mkDerivation {
|
||||
pname = "shake-pack";
|
||||
version = "0.1.0";
|
||||
sha256 = "158xjn4lzcj8gk4b9z4rhql7mqdp7v5x8rpc0sb3mlws2drr8yh0";
|
||||
buildDepends = [ base bytestring bzlib shake tar ];
|
||||
homepage = "https://github.com/LukeHoersten/shake-pack";
|
||||
description = "Shake File Pack Actions";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
@ -109466,11 +109549,11 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "stripe-haskell";
|
||||
version = "0.1.1.2";
|
||||
sha256 = "1m2k35a39ixm19f1am9ngdjjh2irnly1fi3gk5iv73yaaxrm2kjk";
|
||||
version = "0.1.3.0";
|
||||
sha256 = "0crh5kmb3bql0ba8srs58hn68q6cl9iaxy2p4phmwzw4xzganawq";
|
||||
buildDepends = [
|
||||
aeson base bytestring either HsOpenSSL http-streams io-streams mtl
|
||||
text time transformers unordered-containers
|
||||
random text time transformers unordered-containers
|
||||
];
|
||||
testDepends = [
|
||||
aeson base bytestring either HsOpenSSL hspec http-streams random
|
||||
@ -109489,8 +109572,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "strive";
|
||||
version = "0.7.1";
|
||||
sha256 = "1s2rbmkalrnyqfahrp5vibgdzykzanxk9g9hh9qzv8ap3j6yfi7l";
|
||||
version = "0.8.0";
|
||||
sha256 = "0n9j3mpknmqm2y4psbg2yjrs6ddgw5j3ha26aq2mxqb9cz1kb29z";
|
||||
buildDepends = [
|
||||
aeson base bytestring data-default gpolyline http-conduit
|
||||
http-types template-haskell text time transformers
|
||||
@ -110741,8 +110824,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "system-canonicalpath";
|
||||
version = "0.3.1.0";
|
||||
sha256 = "1ziv64rdydx0kg1wip3mskwaj35la1h94017dy5hnn2hj4g8fh3j";
|
||||
version = "0.3.2.0";
|
||||
sha256 = "031m5j7xglxdgp3rkgf2v37jya1a3hhjp3mxbfyyjl27wv7pzhjy";
|
||||
buildDepends = [
|
||||
base basic-prelude directory system-filepath text
|
||||
];
|
||||
@ -111346,7 +111429,6 @@ self: {
|
||||
pkgconfigDepends = [ taglib ];
|
||||
description = "Binding to TagLib (ID3 tag library)";
|
||||
license = "LGPL";
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) { inherit (pkgs) taglib;};
|
||||
|
||||
"taglib-api" = callPackage
|
||||
@ -111364,7 +111446,6 @@ self: {
|
||||
jailbreak = true;
|
||||
description = "An FFI layer over TagLib's C bindings";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) { inherit (pkgs) taglib;};
|
||||
|
||||
"tagset-positional" = callPackage
|
||||
@ -117110,8 +117191,9 @@ self: {
|
||||
pname = "types-compat";
|
||||
version = "0.1.1";
|
||||
sha256 = "1fl3ddsz9m0s0mnd7wq6lqkkmpq0dz83aisqgs1cpg91xlllghby";
|
||||
editedCabalFile = "9d6a31178b383e430ec161d2329d9b52bcf164266f3064e66da53d865825fc96";
|
||||
buildDepends = [ base ];
|
||||
homepage = "https://github.com/philopon/apiary";
|
||||
homepage = "https://github.com/philopon/types-compat";
|
||||
description = "ghc-7.6/7.8 compatible GHC.TypeLits, Data.Typeable and Data.Proxy.";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
@ -122112,8 +122194,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "web-routing";
|
||||
version = "0.5.0";
|
||||
sha256 = "074yllv21djz9g3qh8wl1dn3riy0ax2i2z4c6wh8732c6pwbxygx";
|
||||
version = "0.6.0";
|
||||
sha256 = "0zs4znmg34d4q14v14h07k48921xan69wrp27xjza5kp6nmqy58w";
|
||||
buildDepends = [
|
||||
base bytestring primitive text types-compat unordered-containers
|
||||
];
|
||||
@ -122335,15 +122417,14 @@ self: {
|
||||
}) {};
|
||||
|
||||
"websnap" = callPackage
|
||||
({ mkDerivation, base, filepath, gtk, network, webkit }:
|
||||
({ mkDerivation, base, filepath, gtk, webkit }:
|
||||
mkDerivation {
|
||||
pname = "websnap";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1vlfcg2iw7nylsjxc76w6n4lxrr6w1c3iv5fgnrsx4hn4ljrv3dd";
|
||||
version = "0.1.0.1";
|
||||
sha256 = "05favr2lpc8y3qy7wahcriq8qhvzvr3ngvrgdyjcvf5bvyfwlp84";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [ base filepath gtk network webkit ];
|
||||
jailbreak = true;
|
||||
buildDepends = [ base filepath gtk webkit ];
|
||||
homepage = "https://github.com/jrb/websnap";
|
||||
description = "Transforms URLs to PNGs";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
@ -123845,8 +123926,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xhb-ewmh";
|
||||
version = "0.1.2.1";
|
||||
sha256 = "09q6gyyg6j94m44jlpcc29h4s21l3whkjl9gqf185bbkb4achfvv";
|
||||
version = "0.1.3.1";
|
||||
sha256 = "02qfpwa9558svk0481dxjchr9h0phacsyqzail94kmzkhnnly64l";
|
||||
buildDepends = [
|
||||
base binary bytestring dlist hashable mtl transformers xhb
|
||||
xhb-atom-cache
|
||||
@ -124376,8 +124457,8 @@ self: {
|
||||
({ mkDerivation, base, directory, process, tagsoup, text }:
|
||||
mkDerivation {
|
||||
pname = "xml-to-json-fast";
|
||||
version = "1.0.0";
|
||||
sha256 = "0kd5civ3rv2b1c1xfb985fri2q5arnj80qydazcp4h3vvf301gmh";
|
||||
version = "1.0.1";
|
||||
sha256 = "1gp32adky7pjspppkzz01rj3lpl2b8fvaqf7fg3j0p3cmlbhap7m";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ base directory process tagsoup text ];
|
||||
@ -125061,8 +125142,8 @@ self: {
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "yackage";
|
||||
version = "0.7.0.6";
|
||||
sha256 = "0c0wln31415xvnjd4bn9bqxl190a9yc3ifypif4fab2m7dkd27ly";
|
||||
version = "0.7.0.7";
|
||||
sha256 = "168dcl2ham94k0wmf75lgazn6q82yfww5lpl24nhmdr3fwd4p6p1";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
|
Loading…
Reference in New Issue
Block a user