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