hackage-packages.nix: automatic Haskell package set update

This update was generated by hackage2nix v2.8.2-10-g32cfe74 from Hackage revision
d14774a67e.
This commit is contained in:
Peter Simons 2018-03-06 02:31:35 +01:00
parent b49ef26eca
commit ebfecf3e76

View file

@ -6067,17 +6067,17 @@ self: {
}) {};
"GLFW" = callPackage
({ mkDerivation, base, libX11, mesa, OpenGL }:
({ mkDerivation, base, libGL, libX11, OpenGL }:
mkDerivation {
pname = "GLFW";
version = "0.5.2.5";
sha256 = "029sw2sykr6plffkrmigv5mj2aklllmgi021is5ybsbqv0mxgh9p";
libraryHaskellDepends = [ base OpenGL ];
librarySystemDepends = [ libX11 mesa ];
librarySystemDepends = [ libGL libX11 ];
homepage = "http://haskell.org/haskellwiki/GLFW";
description = "A Haskell binding for GLFW";
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs.xorg) libX11; mesa = null;};
}) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11;};
"GLFW-OGL" = callPackage
({ mkDerivation, base, libX11, libXrandr, mtl, OGL }:
@ -6144,16 +6144,16 @@ self: {
}) {};
"GLHUI" = callPackage
({ mkDerivation, base, libX11, mesa }:
({ mkDerivation, base, libGL, libX11 }:
mkDerivation {
pname = "GLHUI";
version = "1.1.0";
sha256 = "043xw36hrwzc6xdr5vlydbsv5m8675vnk8pfxycr7qixzwljn0aa";
libraryHaskellDepends = [ base ];
librarySystemDepends = [ libX11 mesa ];
librarySystemDepends = [ libGL libX11 ];
description = "Open OpenGL context windows in X11 with libX11";
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs.xorg) libX11; mesa = null;};
}) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11;};
"GLM" = callPackage
({ mkDerivation, aeson, base, bytestring, interpolate, lens, mtl
@ -6198,17 +6198,17 @@ self: {
}) {};
"GLURaw" = callPackage
({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }:
({ mkDerivation, base, libGL, libGLU, OpenGLRaw, transformers }:
mkDerivation {
pname = "GLURaw";
version = "2.0.0.3";
sha256 = "1vncyxaqyc7apw42wkpyxinyvzgzcnx6x858x4z15h5qq70ghb2q";
libraryHaskellDepends = [ base OpenGLRaw transformers ];
librarySystemDepends = [ freeglut mesa ];
librarySystemDepends = [ libGL libGLU ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) freeglut; mesa = null;};
}) {inherit (pkgs) libGL; inherit (pkgs) libGLU;};
"GLUT" = callPackage
({ mkDerivation, array, base, containers, OpenGL, StateVar
@ -13990,7 +13990,7 @@ self: {
}) {};
"OpenGLRaw" = callPackage
({ mkDerivation, base, bytestring, containers, fixed, half, mesa
({ mkDerivation, base, bytestring, containers, fixed, half, libGL
, text, transformers
}:
mkDerivation {
@ -14000,11 +14000,11 @@ self: {
libraryHaskellDepends = [
base bytestring containers fixed half text transformers
];
librarySystemDepends = [ mesa ];
librarySystemDepends = [ libGL ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
}) {mesa = null;};
}) {inherit (pkgs) libGL;};
"OpenGLRaw21" = callPackage
({ mkDerivation, OpenGLRaw }:
@ -29700,28 +29700,28 @@ self: {
"ats-pkg" = callPackage
({ mkDerivation, ansi-wl-pprint, base, binary, bytestring, bzlib
, Cabal, cli-setup, composition-prelude, containers, dependency
, dhall, directory, file-embed, filemanip, http-client
, http-client-tls, lzma, microlens, microlens-th
, optparse-applicative, parallel-io, process, shake, shake-ats
, shake-ext, tar, temporary, text, unix, zip-archive, zlib
, dhall, directory, file-embed, filemanip, hashable, http-client
, http-client-tls, lens, lzma, mtl, optparse-applicative
, parallel-io, process, shake, shake-ats, shake-ext, tar, temporary
, text, unix, zip-archive, zlib
}:
mkDerivation {
pname = "ats-pkg";
version = "2.7.0.10";
sha256 = "15snn30g5hkwp0yv5iz84qx363d26lsy4via9l5h7qr2dahy8rkx";
version = "2.7.0.22";
sha256 = "0cm5psp9k207yqzacdribjp7clk8a3b5vx9qfb7kq5va3fv7hh05";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cli-setup ];
libraryHaskellDepends = [
ansi-wl-pprint base binary bytestring bzlib Cabal
composition-prelude containers dependency dhall directory
file-embed filemanip http-client http-client-tls lzma microlens
microlens-th parallel-io process shake shake-ats shake-ext tar text
unix zip-archive zlib
file-embed filemanip hashable http-client http-client-tls lens lzma
mtl parallel-io process shake shake-ats shake-ext tar text unix
zip-archive zlib
];
executableHaskellDepends = [
base composition-prelude directory microlens optparse-applicative
shake shake-ats temporary text
base composition-prelude directory lens optparse-applicative shake
shake-ats temporary text
];
homepage = "https://github.com/vmchale/atspkg#readme";
description = "A build tool for ATS";
@ -34437,9 +34437,10 @@ self: {
}) {esound = null;};
"bindings-GLFW" = callPackage
({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor
, libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm
, mesa, template-haskell, test-framework, test-framework-hunit
({ mkDerivation, base, bindings-DSL, HUnit, libGL, libX11
, libXcursor, libXext, libXfixes, libXi, libXinerama, libXrandr
, libXxf86vm, template-haskell, test-framework
, test-framework-hunit
}:
mkDerivation {
pname = "bindings-GLFW";
@ -34447,19 +34448,19 @@ self: {
sha256 = "1xmmwxbjpxwndiacrh2mk3lih6cs8d83ax07vg5sgyp5d7qigvik";
libraryHaskellDepends = [ base bindings-DSL template-haskell ];
librarySystemDepends = [
libX11 libXcursor libXext libXfixes libXi libXinerama libXrandr
libXxf86vm mesa
libGL libX11 libXcursor libXext libXfixes libXi libXinerama
libXrandr libXxf86vm
];
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
];
description = "Low-level bindings to GLFW OpenGL library";
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor;
inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes;
inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama;
inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXxf86vm;
mesa = null;};
}) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11;
inherit (pkgs.xorg) libXcursor; inherit (pkgs.xorg) libXext;
inherit (pkgs.xorg) libXfixes; inherit (pkgs.xorg) libXi;
inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrandr;
inherit (pkgs.xorg) libXxf86vm;};
"bindings-K8055" = callPackage
({ mkDerivation, base, K8055D }:
@ -43837,8 +43838,8 @@ self: {
}:
mkDerivation {
pname = "changelogged";
version = "0.1.0";
sha256 = "1krf1wkb4khmwvapnhh0shvf51475j9i2g22fcfl1hjahyqmk6lj";
version = "0.2.0";
sha256 = "05viyx641zwxf222gvhyhs5dclwbylp7s32n7h3zzja4bycf03f2";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
@ -43855,7 +43856,7 @@ self: {
unordered-containers
];
homepage = "https://github.com/GetShopTV/changelogged#readme";
description = "Tool to manage project publishing history";
description = "Changelog manager for Git projects";
license = stdenv.lib.licenses.bsd3;
}) {};
@ -53940,8 +53941,8 @@ self: {
}:
mkDerivation {
pname = "cryptocompare";
version = "0.1.0";
sha256 = "0ghdaf5m3axxzxbq3zm9klrnzh354maf82389aryskglr9l11fv4";
version = "0.1.1";
sha256 = "1cqnhg1ww79k3f6yisdir1fqiil13niv002p5s2kir9ks5phybni";
libraryHaskellDepends = [
aeson base bytestring containers directory exceptions http-conduit
MissingH text time transformers unordered-containers
@ -54904,22 +54905,21 @@ self: {
"curl-runnings" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, cmdargs
, http-conduit, text, unordered-containers, yaml
, directory, hspec, hspec-expectations, http-conduit, text
, unordered-containers, yaml
}:
mkDerivation {
pname = "curl-runnings";
version = "0.1.0";
sha256 = "055hislas8i417482x40ldvlwif9dihhrspb2fnwv0017gmhbjvf";
version = "0.2.0";
sha256 = "0ss98dn39aaa3q2rvf8qf7w638hwwwb2g20p9grw2n9ki0k76i3n";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty base bytestring http-conduit text
unordered-containers
aeson aeson-pretty base bytestring directory hspec
hspec-expectations http-conduit text unordered-containers yaml
];
executableHaskellDepends = [
aeson base bytestring cmdargs text yaml
];
testHaskellDepends = [ base ];
executableHaskellDepends = [ base cmdargs text ];
testHaskellDepends = [ base directory hspec hspec-expectations ];
homepage = "https://github.com/aviaviavi/curl-runnings#readme";
description = "A framework for declaratively writing curl based API tests";
license = stdenv.lib.licenses.mit;
@ -65818,6 +65818,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"easytest" = callPackage
({ mkDerivation, async, base, containers, mtl, random, stm, text }:
mkDerivation {
pname = "easytest";
version = "0.1";
sha256 = "0wjimph83n5fvqgh85ng255qgw3yvagvv7ky1a9lz2blhzb02hh7";
libraryHaskellDepends = [
async base containers mtl random stm text
];
testHaskellDepends = [ base ];
homepage = "https://github.com/joelburget/easytest";
description = "Simple, expressive testing library";
license = stdenv.lib.licenses.mit;
}) {};
"ebeats" = callPackage
({ mkDerivation, base, time }:
mkDerivation {
@ -70848,11 +70863,14 @@ self: {
}:
mkDerivation {
pname = "expressions-z3";
version = "0.1.2";
sha256 = "0q3fnljdsqh1937a8s9a62cmcg1nc787725jp0j32jlmbwwhkfyv";
version = "0.1.3";
sha256 = "1hb44k4558lwsx3z02lgmf1i24ajjlbyqbc88lzgjh3vswfahsj8";
libraryHaskellDepends = [
base containers expressions singletons transformers z3
];
testHaskellDepends = [
base containers expressions singletons transformers z3
];
description = "Encode and Decode expressions from Z3 ASTs";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@ -70953,6 +70971,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"extensible_0_4_7_2" = callPackage
({ mkDerivation, aeson, base, bytestring, cassava, comonad
, constraints, deepseq, ghc-prim, hashable, lens, monad-skeleton
, mtl, primitive, profunctors, QuickCheck, semigroups, StateVar
, tagged, template-haskell, text, transformers
, unordered-containers, vector
}:
mkDerivation {
pname = "extensible";
version = "0.4.7.2";
sha256 = "1qfnhgd7z2hn65gyn4vxn7fxrxzyqgh6j9vdwq8wbq6c8v6j413y";
libraryHaskellDepends = [
aeson base bytestring cassava comonad constraints deepseq ghc-prim
hashable monad-skeleton mtl primitive profunctors QuickCheck
semigroups StateVar tagged template-haskell text transformers
unordered-containers vector
];
testHaskellDepends = [ base lens QuickCheck template-haskell ];
homepage = "https://github.com/fumieval/extensible";
description = "Extensible, efficient, optics-friendly data types and effects";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"extensible-data" = callPackage
({ mkDerivation, base, data-lens, hashable, template-haskell
, unordered-containers
@ -76665,14 +76707,15 @@ self: {
}) {};
"free-vector-spaces" = callPackage
({ mkDerivation, base, lens, linear, MemoTrie, vector, vector-space
({ mkDerivation, base, lens, linear, MemoTrie, pragmatic-show
, vector, vector-space
}:
mkDerivation {
pname = "free-vector-spaces";
version = "0.1.4.0";
sha256 = "057l1fnkqyqnjbhzjz2jjlcrsmkcv2gd16gb5n3j99crw97s62xj";
version = "0.1.5.0";
sha256 = "0rf6yhjcd2x4yj2jvyl6yc8x55a2hqhj5mxzg4f24734agh720z1";
libraryHaskellDepends = [
base lens linear MemoTrie vector vector-space
base lens linear MemoTrie pragmatic-show vector vector-space
];
homepage = "https://github.com/leftaroundabout/free-vector-spaces";
description = "Instantiate the classes from the vector-space package with types from linear";
@ -83902,7 +83945,7 @@ self: {
"gl" = callPackage
({ mkDerivation, base, Cabal, containers, directory, filepath
, fixed, half, hxt, mesa, transformers
, fixed, half, hxt, libGL, transformers
}:
mkDerivation {
pname = "gl";
@ -83914,10 +83957,10 @@ self: {
libraryHaskellDepends = [
base containers fixed half transformers
];
librarySystemDepends = [ mesa ];
librarySystemDepends = [ libGL ];
description = "Complete OpenGL raw bindings";
license = stdenv.lib.licenses.bsd3;
}) {mesa = null;};
}) {inherit (pkgs) libGL;};
"gl-capture" = callPackage
({ mkDerivation, base, bytestring, OpenGL }:
@ -98457,7 +98500,7 @@ self: {
}) {};
"hayland" = callPackage
({ mkDerivation, base, data-flags, mesa, process, template-haskell
({ mkDerivation, base, data-flags, libGL, process, template-haskell
, time, wayland, xml
}:
mkDerivation {
@ -98469,13 +98512,13 @@ self: {
libraryHaskellDepends = [
base data-flags process template-haskell time xml
];
librarySystemDepends = [ mesa wayland ];
librarySystemDepends = [ libGL wayland ];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base process xml ];
description = "Haskell bindings for the C Wayland library";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {mesa = null; inherit (pkgs) wayland;};
}) {inherit (pkgs) libGL; inherit (pkgs) wayland;};
"hayoo-cli" = callPackage
({ mkDerivation, aeson, base, bytestring, http-conduit, http-types
@ -106037,8 +106080,8 @@ self: {
"hp2any-graph" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, freeglut, GLUT, hp2any-core, mesa, network, OpenGL, parseargs
, process
, freeglut, GLUT, hp2any-core, libGL, libGLU, network, OpenGL
, parseargs, process
}:
mkDerivation {
pname = "hp2any-graph";
@ -106051,12 +106094,13 @@ self: {
base bytestring containers directory filepath GLUT hp2any-core
network OpenGL parseargs process
];
executableSystemDepends = [ freeglut mesa ];
executableSystemDepends = [ freeglut libGL libGLU ];
homepage = "http://www.haskell.org/haskellwiki/Hp2any";
description = "Real-time heap graphing utility and profile stream server with a reusable graphing module";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) freeglut; mesa = null;};
}) {inherit (pkgs) freeglut; inherit (pkgs) libGL;
inherit (pkgs) libGLU;};
"hp2any-manager" = callPackage
({ mkDerivation, array, base, bytestring, cairo, containers
@ -106632,18 +106676,18 @@ self: {
"hpqtypes-extras" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, containers
, cryptohash, exceptions, fields-json, hpqtypes, lifted-base
, log-base, monad-control, mtl, safe, tasty, tasty-hunit, text
, text-show, transformers
, cryptohash, data-default, exceptions, fields-json, hpqtypes
, lifted-base, log-base, monad-control, mtl, safe, tasty
, tasty-hunit, text, text-show, transformers
}:
mkDerivation {
pname = "hpqtypes-extras";
version = "1.5.0.1";
sha256 = "022732jsji79a1bb805gh6pcif9ismivs2dwgwks0fb5i9hviilm";
version = "1.6.0.0";
sha256 = "1cp4dnamc0gia8xsf9f6hp8gfmhkfrfs8ijjcl9dqaka87m4hkmx";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash exceptions
fields-json hpqtypes lifted-base log-base monad-control mtl safe
text text-show
base base16-bytestring bytestring containers cryptohash
data-default exceptions fields-json hpqtypes lifted-base log-base
monad-control mtl safe text text-show
];
testHaskellDepends = [
base exceptions hpqtypes lifted-base log-base monad-control tasty
@ -117555,7 +117599,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"influxdb_1_3_0" = callPackage
"influxdb_1_3_0_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal
, cabal-doctest, clock, containers, doctest, foldl, http-client
, http-types, HUnit, lens, mtl, network, optional-args, QuickCheck
@ -117564,8 +117608,8 @@ self: {
}:
mkDerivation {
pname = "influxdb";
version = "1.3.0";
sha256 = "1spvddqc3p9c292bcpp92xx4xzw8qc91y9jg63lzpdm0fmfx8k0l";
version = "1.3.0.1";
sha256 = "08i7bflcmvg5s4r5hv1xxd5niyq5irnawnjwmbz7w3ys0ink1bfl";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
@ -124980,8 +125024,8 @@ self: {
}:
mkDerivation {
pname = "labsat";
version = "0.0.0";
sha256 = "0ps5m31bwfrm7398i7kngrbvsjva7zvyb3cbj7sqk828j72abg9y";
version = "0.0.1";
sha256 = "0pyxlnm30rp3clplwwkf1nxczk3zj2c7wksgg6pwjxgr02b25y03";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@ -139219,15 +139263,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"miso_0_13_0_0" = callPackage
"miso_0_14_0_0" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, http-api-data
, http-types, lucid, network-uri, servant, servant-lucid, text
, transformers, vector
}:
mkDerivation {
pname = "miso";
version = "0.13.0.0";
sha256 = "1sv8q5f1nkvsxk365k8njmaggi1hyp47q539is2n2xhwmsysxwla";
version = "0.14.0.0";
sha256 = "16qi1wcijncjjrjdwxs90jn3xclw1cgb0j1gby1w9d457ys6hmnx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@ -144965,8 +145009,8 @@ self: {
}) {};
"nanovg" = callPackage
({ mkDerivation, base, bytestring, c2hs, containers, freeglut, GLEW
, hspec, inline-c, mesa, QuickCheck, text, vector
({ mkDerivation, base, bytestring, c2hs, containers, GLEW, hspec
, inline-c, libGL, libGLU, QuickCheck, text, vector
}:
mkDerivation {
pname = "nanovg";
@ -144977,14 +145021,14 @@ self: {
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring containers text vector ];
librarySystemDepends = [ freeglut GLEW mesa ];
librarySystemDepends = [ GLEW libGL libGLU ];
libraryToolDepends = [ c2hs ];
testHaskellDepends = [ base containers hspec inline-c QuickCheck ];
homepage = "https://github.com/cocreature/nanovg-hs";
description = "Haskell bindings for nanovg";
license = stdenv.lib.licenses.isc;
hydraPlatforms = stdenv.lib.platforms.none;
}) {GLEW = null; inherit (pkgs) freeglut; mesa = null;};
}) {GLEW = null; inherit (pkgs) libGL; inherit (pkgs) libGLU;};
"nanq" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers
@ -149510,25 +149554,24 @@ self: {
"oauthenticated" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, blaze-builder
, bytestring, case-insensitive, crypto-random, cryptohash
, exceptions, hspec, hspec-expectations, http-client
, http-client-tls, http-types, mtl, network, network-uri, text
, time, transformers
, bytestring, case-insensitive, cryptonite, exceptions, hspec
, hspec-expectations, http-client, http-client-tls, http-types
, memory, mtl, network, network-uri, text, time, transformers
}:
mkDerivation {
pname = "oauthenticated";
version = "0.2.0.0";
sha256 = "01rfx9zc1d9pwqc66axkrl2bi0jnyw4l39kn0nh4q8j63laszc1h";
version = "0.2.1.0";
sha256 = "08njax7jchkmha1angh98v0p3haxn8zj12lajl5npcmzlihd0k6l";
libraryHaskellDepends = [
aeson base base64-bytestring blaze-builder bytestring
case-insensitive crypto-random cryptohash exceptions http-client
http-types mtl network network-uri text time transformers
case-insensitive cryptonite exceptions http-client http-types
memory mtl network network-uri text time transformers
];
testHaskellDepends = [
aeson base base64-bytestring blaze-builder bytestring
case-insensitive crypto-random cryptohash exceptions hspec
hspec-expectations http-client http-client-tls http-types mtl
network network-uri text time transformers
case-insensitive cryptonite exceptions hspec hspec-expectations
http-client http-client-tls http-types memory mtl network
network-uri text time transformers
];
homepage = "https://github.com/tel/oauthenticated.git#readme";
description = "Simple OAuth for http-client";
@ -149799,8 +149842,8 @@ self: {
}) {};
"oculus" = callPackage
({ mkDerivation, base, either, libX11, libXinerama, mesa, monads-tf
, ovr, systemd, transformers, vect-floating
({ mkDerivation, base, either, libGL, libX11, libXinerama
, monads-tf, ovr, systemd, transformers, vect-floating
}:
mkDerivation {
pname = "oculus";
@ -149809,13 +149852,13 @@ self: {
libraryHaskellDepends = [
base either monads-tf transformers vect-floating
];
librarySystemDepends = [ libX11 libXinerama mesa ovr systemd ];
librarySystemDepends = [ libGL libX11 libXinerama ovr systemd ];
homepage = "http://github.com/cpdurham/oculus";
description = "Oculus Rift ffi providing head tracking data";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama;
mesa = null; ovr = null; systemd = null;};
}) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11;
inherit (pkgs.xorg) libXinerama; ovr = null; systemd = null;};
"odbc" = callPackage
({ mkDerivation }:
@ -182342,6 +182385,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"servant-xml" = callPackage
({ mkDerivation, base, bytestring, http-media, servant, xmlbf }:
mkDerivation {
pname = "servant-xml";
version = "1.0.0";
sha256 = "1adgxfv6lhl1nxpqb47a6xh5zx6vi5ry4vi50ffh8p8xx6ckkizi";
libraryHaskellDepends = [
base bytestring http-media servant xmlbf
];
homepage = "https://github.com/fosskers/servant-xml";
description = "Servant support for the XML Content-Type";
license = stdenv.lib.licenses.bsd3;
}) {};
"servant-yaml" = callPackage
({ mkDerivation, aeson, base, base-compat, bytestring, http-media
, servant, servant-server, wai, warp, yaml
@ -183369,15 +183426,15 @@ self: {
}) {};
"shake-ats" = callPackage
({ mkDerivation, base, binary, dependency, directory, hs2ats
, language-ats, microlens, shake, shake-ext, text
({ mkDerivation, base, binary, dependency, directory, hashable
, hs2ats, language-ats, lens, shake, shake-ext, text
}:
mkDerivation {
pname = "shake-ats";
version = "1.5.0.7";
sha256 = "07ipqnzgk7ligq4xsddv7ab5z3gn67vsba6p2lkf9faqhwx91bi9";
version = "1.5.0.9";
sha256 = "1fjbdik7a2izl8sbxnv1i36h55df0v7w23pn7ivk1p18mgljc9lf";
libraryHaskellDepends = [
base binary dependency directory hs2ats language-ats microlens
base binary dependency directory hashable hs2ats language-ats lens
shake shake-ext text
];
homepage = "https://github.com/vmchale/shake-ats#readme";
@ -183404,17 +183461,17 @@ self: {
}) {};
"shake-ext" = callPackage
({ mkDerivation, base, Cabal, composition-prelude, directory, mtl
, shake, template-haskell, text
({ mkDerivation, base, Cabal, composition-prelude, cpphs, directory
, shake, template-haskell
}:
mkDerivation {
pname = "shake-ext";
version = "2.7.0.2";
sha256 = "1r9grv3r06w7ldddn1gq8dbylfi2nnq0xg66ks9z6r0c087l4xp1";
version = "2.7.0.3";
sha256 = "0j1558a43bz7jqbbhn0myjwd9nrd6mnn4r26ix5wqhnsgfpxcw1j";
libraryHaskellDepends = [
base Cabal composition-prelude directory mtl shake template-haskell
text
base Cabal composition-prelude directory shake template-haskell
];
libraryToolDepends = [ cpphs ];
homepage = "https://hub.darcs.net/vmchale/shake-ext";
description = "Helper functions for linting with shake";
license = stdenv.lib.licenses.bsd3;
@ -189664,6 +189721,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"sparse-linear-algebra_0_2_9_7" = callPackage
({ mkDerivation, base, containers, exceptions, hspec
, matrix-market-attoparsec, mtl, mwc-random, primitive, QuickCheck
, scientific, transformers, vector, vector-algorithms, vector-space
}:
mkDerivation {
pname = "sparse-linear-algebra";
version = "0.2.9.7";
sha256 = "0sskv1bbn1q19jh508wk1d898jwzlsf7662v4crrppmb6k6cq1zq";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers exceptions mtl transformers vector
vector-algorithms vector-space
];
testHaskellDepends = [
base containers exceptions hspec matrix-market-attoparsec mtl
mwc-random primitive QuickCheck scientific vector-space
];
homepage = "https://github.com/ocramz/sparse-linear-algebra";
description = "Numerical computation in native Haskell";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sparse-linear-algebra" = callPackage
({ mkDerivation, base, containers, exceptions, hspec
, matrix-market-attoparsec, mtl, mwc-random, primitive, QuickCheck
@ -191928,19 +192009,22 @@ self: {
}) {};
"stagen" = callPackage
({ mkDerivation, aeson, base, blaze-html, bytestring, data-default
, directory, filemanip, lucid, markdown, mtl, optparse-applicative
, parallel, parsec, text
({ mkDerivation, aeson, base, base-compat, blaze-html, bytestring
, data-default, directory, feed, filemanip, json-feed, lucid
, markdown, mtl, network-uri, optparse-applicative, parallel
, parsec, text, text-conversions, time, xml, xml-conduit, xml-types
}:
mkDerivation {
pname = "stagen";
version = "0.1.0";
sha256 = "0cd0639ms4vcdvjvhn8l0893d5nv51kzg3ky0xd9bnmjr8f0wpzm";
version = "0.2.1";
sha256 = "14gyak2gg05xbrx93bl1x7jfy2rwmzczpvip7h21bysqk964rh8j";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base blaze-html bytestring data-default directory filemanip
lucid markdown mtl optparse-applicative parallel parsec text
aeson base base-compat blaze-html bytestring data-default directory
feed filemanip json-feed lucid markdown mtl network-uri
optparse-applicative parallel parsec text text-conversions time xml
xml-conduit xml-types
];
executableHaskellDepends = [ base ];
description = "Static site generator";
@ -195910,6 +195994,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"sv" = callPackage
({ mkDerivation, ansi-wl-pprint, attoparsec, base, bifunctors
, bytestring, charset, containers, contravariant, deepseq, hedgehog
, lens, mtl, parsec, parsers, profunctors, readable, semigroupoids
, semigroups, tasty, tasty-hedgehog, tasty-hunit, text
, transformers, trifecta, utf8-string, validation, vector, void
}:
mkDerivation {
pname = "sv";
version = "0.1";
sha256 = "0rd4jf4qqfc66xxddvaa37fjmpmmjzb7n928gclds0xibzm9ls7s";
libraryHaskellDepends = [
ansi-wl-pprint attoparsec base bifunctors bytestring charset
containers contravariant deepseq lens mtl parsec parsers
profunctors readable semigroupoids semigroups text transformers
trifecta utf8-string validation vector void
];
testHaskellDepends = [
ansi-wl-pprint base bytestring contravariant hedgehog lens parsers
semigroupoids semigroups tasty tasty-hedgehog tasty-hunit text
trifecta utf8-string validation vector
];
homepage = "https://github.com/qfpl/sv";
description = "Encode and decode separated values (CSV, PSV, ...)";
license = stdenv.lib.licenses.bsd3;
}) {};
"svg-builder" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, hashable, text
, unordered-containers
@ -197196,6 +197307,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"system-error" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "system-error";
version = "1.0.0";
sha256 = "1hig7m7arrj6hmgix8abkidy6wf1a4a4y72k81csq90kv5jhynxk";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/heroin-moose/system-error";
description = "Error reporting functions";
license = stdenv.lib.licenses.bsd3;
}) {};
"system-extra" = callPackage
({ mkDerivation, base, bytestring, directory, hspec, process
, QuickCheck
@ -205625,6 +205748,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {toxcore = null;};
"toxiproxy-haskell" = callPackage
({ mkDerivation, aeson, base, containers, hspec, http-client
, process, servant, servant-client, silently, text, time
}:
mkDerivation {
pname = "toxiproxy-haskell";
version = "0.1.0.0";
sha256 = "19ls808f24in0c8swgv7iqwja9f126zvcc0a7ix615i0a9hp3ks6";
libraryHaskellDepends = [
aeson base containers http-client servant servant-client text
];
testHaskellDepends = [
base containers hspec http-client process servant servant-client
silently time
];
homepage = "https://github.com/jpittis/toxiproxy-haskell#readme";
description = "Client library for Toxiproxy: a TCP failure testing proxy";
license = stdenv.lib.licenses.bsd3;
}) {};
"toysolver" = callPackage
({ mkDerivation, array, base, bytestring, bytestring-builder, clock
, containers, criterion, data-default, data-default-class
@ -208529,8 +208672,8 @@ self: {
({ mkDerivation, base, containers, template-haskell }:
mkDerivation {
pname = "type-interpreter";
version = "0.0.0";
sha256 = "1nma1zrk11p5i6xbnsnlhb9h0xvixq784lymbb6i3ijabl4v2ksg";
version = "0.0.1";
sha256 = "0i16636dncb3k3564m5gjjgbpcvmlwnjg12wq4ndhcy5rwjp7w6b";
libraryHaskellDepends = [ base containers template-haskell ];
description = "Interpreter for Template Haskell types";
license = stdenv.lib.licenses.bsd3;
@ -210984,8 +211127,8 @@ self: {
}:
mkDerivation {
pname = "unjson";
version = "0.15.0.0";
sha256 = "0ib7y7a4ham90hzy5anrhry7c1w8c847v39ygjj8556pq6j47nyg";
version = "0.15.1.0";
sha256 = "1k61lak22snr7fimpr7pjri33rg0gm1hhfn253bwlz3pvpn85vmp";
libraryHaskellDepends = [
aeson attoparsec base bytestring containers free hashable invariant
pretty primitive scientific text time unordered-containers vector
@ -214220,6 +214363,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
"viewprof_0_0_0_14" = callPackage
({ mkDerivation, base, brick, containers, directory, ghc-prof, lens
, scientific, text, vector, vector-algorithms, vty
}:
mkDerivation {
pname = "viewprof";
version = "0.0.0.14";
sha256 = "19x112bpc7fw3dqfpgp0bi6cw01vr8csfyqixi68128ij3b6csm0";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base brick containers directory ghc-prof lens scientific text
vector vector-algorithms vty
];
homepage = "https://github.com/maoe/viewprof";
description = "Text-based interactive GHC .prof viewer";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"views" = callPackage
({ mkDerivation, base, mtl }:
mkDerivation {