forked from mirrors/nixpkgs
hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.10.1-7-ga1690c5 from Hackage revision
412c0df404
.
This commit is contained in:
parent
c8632c2ae1
commit
8aaaf98045
155
pkgs/development/haskell-modules/hackage-packages.nix
generated
155
pkgs/development/haskell-modules/hackage-packages.nix
generated
|
@ -35148,16 +35148,16 @@ self: {
|
|||
}) {};
|
||||
|
||||
"bindings-sane" = callPackage
|
||||
({ mkDerivation, base, bindings-DSL, saneBackends }:
|
||||
({ mkDerivation, base, bindings-DSL, sane-backends }:
|
||||
mkDerivation {
|
||||
pname = "bindings-sane";
|
||||
version = "0.0.1";
|
||||
sha256 = "0jxhc0x5hq6y7iznqlxbgnl37a7k8yki2ri475gyc158d47b0zm2";
|
||||
libraryHaskellDepends = [ base bindings-DSL ];
|
||||
libraryPkgconfigDepends = [ saneBackends ];
|
||||
libraryPkgconfigDepends = [ sane-backends ];
|
||||
description = "FFI bindings to libsane";
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
}) {inherit (pkgs) saneBackends;};
|
||||
}) {inherit (pkgs) sane-backends;};
|
||||
|
||||
"bindings-sc3" = callPackage
|
||||
({ mkDerivation, base, bindings-DSL, scsynth }:
|
||||
|
@ -81595,7 +81595,7 @@ self: {
|
|||
"gi-dbusmenu" = callPackage
|
||||
({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
|
||||
, gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading
|
||||
, libdbusmenu-glib, text, transformers
|
||||
, libdbusmenu, text, transformers
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "gi-dbusmenu";
|
||||
|
@ -81606,11 +81606,11 @@ self: {
|
|||
base bytestring containers gi-glib gi-gobject haskell-gi
|
||||
haskell-gi-base haskell-gi-overloading text transformers
|
||||
];
|
||||
libraryPkgconfigDepends = [ libdbusmenu-glib ];
|
||||
libraryPkgconfigDepends = [ libdbusmenu ];
|
||||
doHaddock = false;
|
||||
description = "Dbusmenu bindings";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
}) {inherit (pkgs) libdbusmenu-glib;};
|
||||
}) {inherit (pkgs) libdbusmenu;};
|
||||
|
||||
"gi-dbusmenugtk3" = callPackage
|
||||
({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
|
||||
|
@ -82291,7 +82291,8 @@ self: {
|
|||
|
||||
"gi-xlib" = callPackage
|
||||
({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi
|
||||
, haskell-gi-base, haskell-gi-overloading, text, transformers, x11
|
||||
, haskell-gi-base, haskell-gi-overloading, text, transformers
|
||||
, xlibsWrapper
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "gi-xlib";
|
||||
|
@ -82302,11 +82303,11 @@ self: {
|
|||
base bytestring containers haskell-gi haskell-gi-base
|
||||
haskell-gi-overloading text transformers
|
||||
];
|
||||
libraryPkgconfigDepends = [ x11 ];
|
||||
libraryPkgconfigDepends = [ xlibsWrapper ];
|
||||
doHaddock = false;
|
||||
description = "xlib bindings";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
}) {inherit (pkgs) x11;};
|
||||
}) {inherit (pkgs) xlibsWrapper;};
|
||||
|
||||
"giak" = callPackage
|
||||
({ mkDerivation, async, base, bytestring, Cabal, containers
|
||||
|
@ -87681,7 +87682,7 @@ self: {
|
|||
"greenclip" = callPackage
|
||||
({ mkDerivation, base, binary, bytestring, directory, exceptions
|
||||
, hashable, libXau, microlens, microlens-mtl, protolude, text, unix
|
||||
, vector, wordexp, X11, x11, xcb, xdmcp
|
||||
, vector, wordexp, X11, xcb, xdmcp, xlibsWrapper
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "greenclip";
|
||||
|
@ -87693,12 +87694,12 @@ self: {
|
|||
base binary bytestring directory exceptions hashable microlens
|
||||
microlens-mtl protolude text unix vector wordexp X11
|
||||
];
|
||||
executablePkgconfigDepends = [ libXau x11 xcb xdmcp ];
|
||||
executablePkgconfigDepends = [ libXau xcb xdmcp xlibsWrapper ];
|
||||
description = "Simple clipboard manager to be integrated with rofi";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {inherit (pkgs.xorg) libXau; inherit (pkgs) x11; xcb = null;
|
||||
xdmcp = null;};
|
||||
}) {inherit (pkgs.xorg) libXau; xcb = null; xdmcp = null;
|
||||
inherit (pkgs) xlibsWrapper;};
|
||||
|
||||
"greg-client" = callPackage
|
||||
({ mkDerivation, base, binary, bytestring, clock, hostname, network
|
||||
|
@ -88665,16 +88666,16 @@ self: {
|
|||
}) {};
|
||||
|
||||
"gtk-traymanager" = callPackage
|
||||
({ mkDerivation, base, glib, gtk3, x11 }:
|
||||
({ mkDerivation, base, glib, gtk3, xlibsWrapper }:
|
||||
mkDerivation {
|
||||
pname = "gtk-traymanager";
|
||||
version = "1.0.1";
|
||||
sha256 = "0vc1gwhg5l7l5iqb1i3zwd1bsy8fxsiwkwzza7j15zi07f97k7di";
|
||||
libraryHaskellDepends = [ base glib gtk3 ];
|
||||
libraryPkgconfigDepends = [ x11 ];
|
||||
libraryPkgconfigDepends = [ xlibsWrapper ];
|
||||
description = "A wrapper around the eggtraymanager library for Linux system trays";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
}) {inherit (pkgs) x11;};
|
||||
}) {inherit (pkgs) xlibsWrapper;};
|
||||
|
||||
"gtk2hs-buildtools" = callPackage
|
||||
({ mkDerivation, alex, array, base, Cabal, containers, directory
|
||||
|
@ -100856,6 +100857,8 @@ self: {
|
|||
pname = "hgeometry";
|
||||
version = "0.7.0.0";
|
||||
sha256 = "0c91n42l6pqkdw46snhplvzm8f05x0x5g3b7mgx13ndskcf9vmyz";
|
||||
revision = "1";
|
||||
editedCabalFile = "1wjwpfiic3jbhg77qm2nzgvybnpk0h3wwpywkpfxz8sv1yhb8pa2";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
enableSeparateDataOutput = true;
|
||||
|
@ -115424,6 +115427,42 @@ self: {
|
|||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"ihaskell_0_9_1_0" = callPackage
|
||||
({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal
|
||||
, cmdargs, containers, directory, filepath, ghc, ghc-boot
|
||||
, ghc-parser, ghc-paths, haskeline, haskell-src-exts, here, hlint
|
||||
, hspec, hspec-contrib, http-client, http-client-tls, HUnit
|
||||
, ipython-kernel, mtl, parsec, process, random, setenv, shelly
|
||||
, split, stm, strict, system-argv0, text, transformers, unix
|
||||
, unordered-containers, utf8-string, uuid, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "ihaskell";
|
||||
version = "0.9.1.0";
|
||||
sha256 = "1r71bijgfcsgsymg9aqjkgplg8c9g65zddr7dqf7d3mv2bpb5ain";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
enableSeparateDataOutput = true;
|
||||
libraryHaskellDepends = [
|
||||
aeson base base64-bytestring bytestring cereal cmdargs containers
|
||||
directory filepath ghc ghc-boot ghc-parser ghc-paths haskeline
|
||||
haskell-src-exts hlint http-client http-client-tls ipython-kernel
|
||||
mtl parsec process random shelly split stm strict system-argv0 text
|
||||
transformers unix unordered-containers utf8-string uuid vector
|
||||
];
|
||||
executableHaskellDepends = [
|
||||
aeson base bytestring containers directory ghc ipython-kernel
|
||||
process strict text transformers unix
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base directory ghc ghc-paths here hspec hspec-contrib HUnit setenv
|
||||
shelly text transformers
|
||||
];
|
||||
description = "A Haskell backend kernel for the IPython project";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"ihaskell-aeson" = callPackage
|
||||
({ mkDerivation, aeson, aeson-pretty, base, bytestring, here
|
||||
, ihaskell, text
|
||||
|
@ -118687,6 +118726,28 @@ self: {
|
|||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"ipython-kernel_0_9_1_0" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, cereal, containers
|
||||
, cryptonite, directory, filepath, memory, mtl, process, temporary
|
||||
, text, transformers, unordered-containers, uuid, zeromq4-haskell
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "ipython-kernel";
|
||||
version = "0.9.1.0";
|
||||
sha256 = "0944riw00i3m8n3cab0g9c14b24xryf9w8ddlddnmxgys4sn8qak";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
enableSeparateDataOutput = true;
|
||||
libraryHaskellDepends = [
|
||||
aeson base bytestring cereal containers cryptonite directory
|
||||
filepath memory mtl process temporary text transformers
|
||||
unordered-containers uuid zeromq4-haskell
|
||||
];
|
||||
description = "A library for creating kernels for IPython frontends";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"irc" = callPackage
|
||||
({ mkDerivation, attoparsec, base, bytestring, HUnit, QuickCheck
|
||||
, test-framework, test-framework-hunit, test-framework-quickcheck2
|
||||
|
@ -170931,6 +170992,31 @@ self: {
|
|||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"relude" = callPackage
|
||||
({ mkDerivation, base, bytestring, containers, deepseq, doctest
|
||||
, gauge, ghc-prim, Glob, hashable, hedgehog, mtl, stm, tasty
|
||||
, tasty-hedgehog, text, transformers, unordered-containers
|
||||
, utf8-string
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "relude";
|
||||
version = "0.1.0";
|
||||
sha256 = "16q9mh35c989pmy4xz602svfz57x2kbl8v82mjsapigmnxa41r8x";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring containers deepseq ghc-prim hashable mtl stm text
|
||||
transformers unordered-containers utf8-string
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bytestring doctest Glob hedgehog tasty tasty-hedgehog text
|
||||
utf8-string
|
||||
];
|
||||
benchmarkHaskellDepends = [
|
||||
base containers gauge unordered-containers
|
||||
];
|
||||
description = "Custom prelude from Kowainik";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"remark" = callPackage
|
||||
({ mkDerivation, base, GenericPretty, tasty, tasty-golden
|
||||
, tasty-hunit
|
||||
|
@ -183939,6 +184025,24 @@ self: {
|
|||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"simple-vec3_0_4_0_8" = callPackage
|
||||
({ mkDerivation, base, criterion, doctest, doctest-driver-gen
|
||||
, QuickCheck, tasty, tasty-quickcheck, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "simple-vec3";
|
||||
version = "0.4.0.8";
|
||||
sha256 = "0jikq60ixk21gb7j3rayxqha73m9vn4n8kz4799rcw5qiii7rr4a";
|
||||
libraryHaskellDepends = [ base QuickCheck vector ];
|
||||
testHaskellDepends = [
|
||||
base doctest doctest-driver-gen tasty tasty-quickcheck
|
||||
];
|
||||
benchmarkHaskellDepends = [ base criterion vector ];
|
||||
description = "Three-dimensional vectors of doubles with basic operations";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"simple-zipper" = callPackage
|
||||
({ mkDerivation, base, hspec, lens }:
|
||||
mkDerivation {
|
||||
|
@ -198544,6 +198648,7 @@ self: {
|
|||
];
|
||||
description = "TensorFlow bindings";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {tensorflow = null;};
|
||||
|
||||
"tensorflow-core-ops" = callPackage
|
||||
|
@ -198564,6 +198669,7 @@ self: {
|
|||
];
|
||||
description = "Haskell wrappers for Core Tensorflow Ops";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tensorflow-logging" = callPackage
|
||||
|
@ -198591,6 +198697,7 @@ self: {
|
|||
];
|
||||
description = "TensorBoard related functionality";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tensorflow-opgen" = callPackage
|
||||
|
@ -198608,6 +198715,7 @@ self: {
|
|||
];
|
||||
description = "Code generation for TensorFlow operations";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tensorflow-ops" = callPackage
|
||||
|
@ -198637,6 +198745,7 @@ self: {
|
|||
];
|
||||
description = "Friendly layer around TensorFlow bindings";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tensorflow-proto" = callPackage
|
||||
|
@ -198652,6 +198761,7 @@ self: {
|
|||
libraryToolDepends = [ protobuf ];
|
||||
description = "TensorFlow protocol buffers";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {inherit (pkgs) protobuf;};
|
||||
|
||||
"tensorflow-records" = callPackage
|
||||
|
@ -198668,6 +198778,7 @@ self: {
|
|||
];
|
||||
description = "Encoder and decoder for the TensorFlow \"TFRecords\" format";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tensorflow-records-conduit" = callPackage
|
||||
|
@ -198684,6 +198795,7 @@ self: {
|
|||
];
|
||||
description = "Conduit wrappers for TensorFlow.Records.";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tensorflow-test" = callPackage
|
||||
|
@ -209694,6 +209806,17 @@ self: {
|
|||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"uploadtest" = callPackage
|
||||
({ mkDerivation, base }:
|
||||
mkDerivation {
|
||||
pname = "uploadtest";
|
||||
version = "0.0.0";
|
||||
sha256 = "17hi7ibasy0lhvzhv52k0dynvhxlsmywliymyygwk1jv740z1bdz";
|
||||
libraryHaskellDepends = [ base ];
|
||||
description = "Upload test";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"upskirt" = callPackage
|
||||
({ mkDerivation, base, bytestring }:
|
||||
mkDerivation {
|
||||
|
|
Loading…
Reference in a new issue